pvary commented on a change in pull request #2512:
URL: https://github.com/apache/hive/pull/2512#discussion_r677471435



##########
File path: ql/src/java/org/apache/hadoop/hive/ql/metadata/Table.java
##########
@@ -1261,4 +1275,19 @@ public boolean equalsWithIgnoreWriteId(Table tbl ) {
     return result;
   }
 
+  public long getAsOfVersion() {
+    return asOfVersion;
+  }
+
+  public void setAsOfVersion(long asOfVersion) {

Review comment:
       Let's think about this, because this is an interesting question. One 
consequence is that:
   - Instead of this `SELECT * FROM customers FOR SYSTEM_VERSION AS OF 12345678`
   - We have to use `SELECT * FROM customers FOR SYSTEM_VERSION AS OF 
'12345678'`
   
   Notice that we have to use `'` (quotes) for the string




-- 
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]

Reply via email to