You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Time travel using versionvaldf= spark.read.format("qbeast").option("versionAsOf", "1984").load(tablePath)
valdf= spark.sql("SELECT * FROM myCatalog.tableName VERSION AS OF 1984")
// Time travel using timestampvaldf= spark.read.format("qbeast").option("timestampAsOf", "1844-10-15").load(tablePath)
valdf= spark.sql("SELECT * FROM myCatalog.tableName TIMESTAMP AS OF '1844-10-15'")
The text was updated successfully, but these errors were encountered:
Add time-traveling feature to qbeast-spark:
The text was updated successfully, but these errors were encountered: