aokolnychyi commented on code in PR #53118:
URL: https://github.com/apache/spark/pull/53118#discussion_r2547306711
##########
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:
What about this, folks?
```
/**
* Returns the version of this table if versioning is supported, null
otherwise.
* <p>
* This method must not trigger a refresh of the table metadata. It should
return
* the version that corresponds to the current state of this table instance.
*/
```
--
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]