-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] InputColumn
does not work properly with Spark columns that need escaping
#1712
Comments
Hi @RobinL I've similar issue when experimenting with a dataset
Unfortunately, I'm not very well versed with Splink library. Can you suggest what is going wrong here? |
Not sure, could be a version issue with sqlglot (e.g. try an earlier version). Would need to see the full code + a list of the exact packages you have installed to get any further. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reprex:
This works:
This does not (note there's a space in first name in the below, but an underscore above:
Click to expand full traceback
And hence a full example script with a
first name
column doesn't work:click to expand script
full traceback
The problem is that in parse_input_name_to_sqlglot_tree
we have
We end up running the last part
And the tree is
when it should be
Because it needs
first_name
not "first_name"The text was updated successfully, but these errors were encountered: