The function "interlaces" the queries and combines their validity time axes (valid_from and valid_until) onto a single time axis.
interlace_sql()
is deprecated in favor of interlace()
interlace(tables, by = NULL, colnames = NULL)interlace_sql(tables, by = NULL, colnames = NULL)
The combination of input queries with a single, interlaced valid_from / valid_until time axis.
The combination of input queries with a single, interlaced
valid_from / valid_until time axis
(list
(tbl_dbi(1)
))
The historical tables to combine.
(character()
)
The variable to merge by.
(named list()
)
If the time axes of validity is not called "valid_to" and "valid_until" inside each tbl_dbi
,
you can specify their names by supplying the arguments as a list:
e.g. c(t1.from = "\<colname\>", t2.until = "\<colname\>").
colnames must be named in same order as as given in tables (i.e. t1, t2, t3, ...).