Implemented:
Added a new parameter timestamp to the adapta.storage.delta_lake.v3.load function (alias adapta.storage.delta_lake.load). This enhancement enables users to load a version of a delta table based on a specified timestamp. The function retrieves the version with the closest creation timestamp to the provided argument. Timestamps can be supplied as a datetime object.
Example:
data = load(auth_client, data_path, timpestamp=datetime.datetime(year=2024, month=7, day=25))
Implemented: Added a new parameter timestamp to the adapta.storage.delta_lake.v3.load function (alias adapta.storage.delta_lake.load). This enhancement enables users to load a version of a delta table based on a specified timestamp. The function retrieves the version with the closest creation timestamp to the provided argument. Timestamps can be supplied as a datetime object.
Example: data = load(auth_client, data_path, timpestamp=datetime.datetime(year=2024, month=7, day=25))