Skip to contents

dplyr::copy_to is very slow to upload tables to BQ. This is function calls dplyr::copy_to except if option "useBigrqueryUpload" option is set to TRUE In that case it uses package bigrquery to upload the table

Usage

tmp_dplyr_copy_to(
  dest,
  df,
  name = deparse(substitute(df)),
  overwrite = FALSE,
  ...
)

Arguments

dest

The destination database connection or table name.

df

The data frame to be copied.

name

The name of the destination table (default is the name of the data frame).

overwrite

Logical value indicating whether to overwrite an existing table (default is FALSE).

...

pass parameters to dplyr::copy_to

Value

The new table created or the updated table.