-
Hi Toby, Thanks for your work on this. It’s an awesome achievement for the analytics community! I had a question on the expression system logic. What is the logic when deciding to make a child expression associated with the As a concrete example.
I would now expect the EQ expression child to be in
However for the children of the EQ expression, the left child is available via
Relatedly:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
this is the default argument of expression, expression is usually used when there's another argument so where.this is the inner. for eq, this is left and expression is right. you can also call left and right on any binary operation. checkout out sqlglot/expressions.py for more details |
Beta Was this translation helpful? Give feedback.
this is the default argument of expression, expression is usually used when there's another argument
so where.this is the inner. for eq, this is left and expression is right. you can also call left and right on any binary operation.
checkout out sqlglot/expressions.py for more details