tests/testthat/_snaps/db-io.md

db_copy_to() wraps DBI errors

Code
  (expect_error(db_copy_to(con = con, table = "tmp2", values = data.frame(x = c(1,
    1)), unique_indexes = list("x"))))
Output
  <error/rlang_error>
  Error in `db_copy_to()`:
  ! Can't copy to table `tmp2`.
  Caused by error in `db_create_index.DBIConnection()`:
  ! Can't create index on table `tmp2`.
  Caused by error:
  ! dummy DBI error

db_copy_to() can overwrite a table

Code
  (expect_error(db_copy_to(con = con, table = "tmp", values = data.frame(x = c(1,
    1)))))
Output
  <error/rlang_error>
  Error in `db_copy_to()`:
  ! Can't copy to table `tmp`.
  Caused by error in `dplyr::db_write_table()`:
  ! Can't write table table `tmp`.
  Caused by error:
  ! dummy DBI error

db_save_query() can overwrite a table

Code
  (expect_error(db_save_query(con = con, sql = "SELECT 2 FROM tmp", name = "tmp"))
  )
Output
  <error/rlang_error>
  Error in `db_save_query()`:
  ! Can't save query to table tmp.
  Caused by error:
  ! dummy DBI error


Try the dbplyr package in your browser

Any scripts or data that you put into this service are public.

dbplyr documentation built on Oct. 26, 2023, 9:06 a.m.