-
Notifications
You must be signed in to change notification settings - Fork 82
feat(core): enhance scope analysis and implement ByPass Function #802
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
{"name": "orderkey", "expression": "o_orderkey", "type": "integer"}, | ||
{"name": "custkey", "expression": "o_custkey", "type": "integer"}, | ||
{"name": "o_orderkey", "type": "integer"}, | ||
{"name": "o_custkey", "type": "integer"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't purely rename the column name after this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. In this case, we won't provide any remote schema for them. Wren core will use the column without expression as the remote column.
* remove unused return result * implement ByPass function for udf, udaf and udwf * format and enhance the doc * create table schema refer to the column type * fix the scope analyze for the CTE and subquery * fix the interval unparsing and enable the tests * enable the model test * fix compile fails * fix the python test * fix ibis test * fix ibis test
Description