Materialize a treated data frame remotely.
rquery_prepare( db, rqplan, data_source, result_table_name, ..., extracols = NULL, temporary = FALSE, overwrite = TRUE, attempt_nan_inf_mapping = FALSE, col_sample = NULL, return_ops = FALSE ) materialize_treated( db, rqplan, data_source, result_table_name, ..., extracols = NULL, temporary = FALSE, overwrite = TRUE, attempt_nan_inf_mapping = FALSE, col_sample = NULL, return_ops = FALSE )
db | a db handle. |
---|---|
rqplan | an query plan produced by as_rquery_plan(). |
data_source | relop, data source (usually a relop_table_source). |
result_table_name | character, table name to land result in |
... | force later arguments to bind by name. |
extracols | extra columns to copy. |
temporary | logical, if TRUE try to make result temporary. |
overwrite | logical, if TRUE try to overwrite result. |
attempt_nan_inf_mapping | logical, if TRUE attempt to map NaN and Infnity to NA/NULL (goot on PostgreSQL, not on Spark). |
col_sample | sample of data to determine column types. |
return_ops | logical, if TRUE return operator tree instead of materializing. |
description of treated table.
materialize_treated
: old name for rquery_prepare function