gengliangwang commented on code in PR #53118:
URL: https://github.com/apache/spark/pull/53118#discussion_r2539292210
##########
sql/catalyst/src/main/java/org/apache/spark/sql/connector/catalog/Table.java:
##########
@@ -104,8 +104,8 @@ default Map<String, String> properties() {
default Constraint[] constraints() { return new Constraint[0]; }
/**
- * Returns the current table version if implementation supports versioning.
+ * Returns this table version without refreshing state if implementation
supports versioning.
Review Comment:
How about
```
/**
* Returns the current table version if the implementation supports
versioning.
* The returned value is not automatically refreshed.
* If the table is not versioned, this method may return null.
*/
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]