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
Noticed while trying to push the concept_relationship table to Postgres. It probably has to with writing the Andromeda table to CSV prior to calling the PG bulk upload tool
The text was updated successfully, but these errors were encountered:
This is actually harder than I thought. insertTable() does some operations on the data, like (optionally) converting column names to snake_case, and inferring column types for the table creation SQL, that don't work out-of-the-box on Andromeda tables. For now, insertTable() explicitly converts Andromeda tables to data frames and throws a warning when it does.
For larger tables, for now the best option is to do the batching outside of insertTable().
Noticed while trying to push the
concept_relationship
table to Postgres. It probably has to with writing the Andromeda table to CSV prior to calling the PG bulk upload toolThe text was updated successfully, but these errors were encountered: