is.historical {SCDB} | R Documentation |
Checks if table contains historical data
Description
Checks if table contains historical data
Usage
is.historical(.data)
Arguments
.data |
( |
Value
TRUE
if .data
contains the columns: "checksum", "from_ts", and "until_ts". FALSE
otherwise.
Examples
conn <- get_connection()
dplyr::copy_to(conn, mtcars, name = "mtcars", temporary = FALSE)
create_table(mtcars, conn, db_table = id("mtcars_historical", conn))
is.historical(get_table(conn, "mtcars")) # FALSE
is.historical(get_table(conn, "mtcars_historical")) # TRUE
close_connection(conn)
[Package SCDB version 0.4.0 Index]