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
With the updates to dbplyr version 2.4.0 it seems like some of the arguments that worked in the previous version, I was using version 2.3.2, no longer work.
The 3 main differences we are seeing is
The "database" argument needs to be called “catalog” now
"schemaname" needs to be called “schema”
"tablename" needs to be called “table”
Database to catalog
For example this call used to work with the argument “database”:
With the updates to dbplyr version 2.4.0 it seems like some of the arguments that worked in the previous version, I was using version 2.3.2, no longer work.
The 3 main differences we are seeing is
Database to catalog
For example this call used to work with the argument “database”:
This now requires “database” to be named “catalog” as seen below:
Schemaname and Tablename
“schemaname” and “tablename” were arguments that worked before and are now also giving errors:
schemaname and tablename now are required to be “schema” and “table”:
The text was updated successfully, but these errors were encountered: