Checkout

To revert to a previous version of a table, use the checkout method. This allows you to load historical data or restore a previous state.

db.checkout(database="mydatabase", table="mytable", version=1)
db.checkout(database="mydatabase", table="mytable", version="2024-01-01")
db.checkout(database="mydatabase", table="mytable", version=datetime(2024, 1, 1))