amogh-jahagirdar commented on code in PR #6573: URL: https://github.com/apache/iceberg/pull/6573#discussion_r1068707350
########## docs/spark-queries.md: ########## @@ -143,6 +145,22 @@ spark.read .load("path/to/table") ``` +```scala +// time travel to tag historical-snapshot +spark.read + .option("tag", "historical-snapshot") + .format("iceberg") + .load("path/to/table") +``` + +```scala +// time travel to the head snapshot of audit-branch +spark.read + .option("branch", "audit-branch") Review Comment: Sure, updated! -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org