Replies: 1 comment
-
Hi @debrando , The import connectorx as cx
db1 = "postgresql://username1:password1@server1:port1/database1"
db2 = "postgresql://username2:password2@server2:port2/database2"
cx.read_sql({"db1": db1, "db2": db2}, "SELECT * FROM db1.nation n, db2.region r where n.n_regionkey = r.r_regionkey") This feature requires a query rewriter, which is a prototype implemented in Java (using Apache Calcite) and is currently experimental. I'm considering to decouple this part from the connectorx repo next, and reimplement it in rust in the future. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I see that since long time in the final package is included this:
...which brings on the target environment, this folder:
...which contains only a couple of java packages:
These:
So, I'm wondering: what's the purpose, and can we remove the above from the list?
Beta Was this translation helpful? Give feedback.
All reactions