Replies: 1 comment 1 reply
-
Hey @NickCrews -- As for raw SQL, check out #4853 |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
Thank you for your help!
So I've been using Splink to do entity resolution. With Splink, you define join conditions using raw SQL strings (see
blocking_rules_to_generate_predictions
in the first few cells). They chose this method because it makes it trivial to save/load your model as JSON.I would like to do something similar, but I want to
lambda left, right: left.first_name == right.last_name
I see that it is possible to serialize an expression to substrait, but we can't round-trip that representation back to Ibis, at that point we can only pass that off to a SQL engine.
Compiling an expression to a raw SQL string would be great, but again there is no way to revert this back to an Ibis expression that I know of.
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions