If we try to create a remote table pointing to some ns/repo/table on Splitgraph DDN the first issue we hit is that the default protocol that connector-x uses (binary) employs the COPY command at some point, but that is disallowed on DDN, so the rewrite errors-out: UnsupportedSQLError: Unsupported statement type CopyStmt
On the other hand, if we set the suboptimal protocol (cursor) we still hit an issue:
Fixed by configuring session pooling mode for Splitgraph pgbouncer, as well as avoiding the copy statements altogether by forcing the cursor protocol for DDN
If we try to create a remote table pointing to some ns/repo/table on Splitgraph DDN the first issue we hit is that the default protocol that connector-x uses (binary) employs the COPY command at some point, but that is disallowed on DDN, so the rewrite errors-out:
UnsupportedSQLError: Unsupported statement type CopyStmt
On the other hand, if we set the suboptimal protocol (cursor) we still hit an issue: