You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling drop table, drop view, etc commands for an existing table (view, etc) through DBI::dbExecute, the command is completed, but an exception is thrown. This makes it necessary to surround each such query with try() as a workaround.
con<-DBI::dbConnect(bigrquery::bigquery(), project="myProject", dataset="myDataset")
#priority parameter is ignoredDBI::dbExecute(con, "drop table myDataset.myTable")
#Error : Not found: Table myDataset.myTable [notFound]DBI::dbDisconnect(con)