Skip to contents

This function is used to read tables in a Databricks catalog with the option of defining timepoint.

Usage

read_table_timepoint(connector_object, name, timepoint = NULL, version = NULL)

Arguments

connector_object

ConnectorDatabricksTable object for interacting with Databricks

name

Table name

timepoint

Timepoint in Delta time travel syntax # nolint format.

version

Table version generated by the operation.

Value

Data frame with values from the Databricks table

Details

More info here # nolint

Examples

if (FALSE) { # \dontrun{
connector_object |>
    read_table_timepoint(name = "table_name",
                         timepoint = "2024-04-10 10:10:07 CEST"
     )
} # }