JingsongLi commented on code in PR #2491:
URL: https://github.com/apache/incubator-paimon/pull/2491#discussion_r1429387983


##########
docs/content/how-to/querying-tables.md:
##########
@@ -51,6 +51,11 @@ SELECT * FROM t /*+ OPTIONS('scan.snapshot-id' = '1') */;
 -- read the snapshot from specified timestamp in unix milliseconds
 SELECT * FROM t /*+ OPTIONS('scan.timestamp-millis' = '1678883047356') */;
 
+-- read the snapshot from specified datetime
+-- Supported formats include:yyyy,yyyy-MM,yyyy-MM-dd, yyyy-MM-dd HH, 
yyyy-MM-dd HH:mm, yyyy-MM-dd HH:mm:ss, yyyy-MM-dd HH:mm:ss.SSS
+-- default local time zone,If you need to specify a time zone, please end with 
'/UTC{offset}',for example: 2023-12-11 12:12/UTC+8
+SELECT * FROM t /*+ OPTIONS('scan.datetime' = '2023-12-09 23:09') */;

Review Comment:
   just `scan.timestamp`?



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

Reply via email to