-
Notifications
You must be signed in to change notification settings - Fork 37
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
feat(core): apply the DataFusion optimization rule #819
feat(core): apply the DataFusion optimization rule #819
Conversation
@@ -71,7 +71,8 @@ mod tests { | |||
.unwrap(); | |||
assert_eq!( | |||
transformed_sql, | |||
r#"SELECT * FROM (SELECT main.customer.c_custkey AS c_custkey, main.customer.c_name AS c_name FROM main.customer) AS customer"# | |||
"SELECT main.customer.c_custkey AS c_custkey, main.customer.c_name AS c_name FROM \ |
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.
After applying ExpandWildcardRule
, the select items are expanded. We will apply the type of coercion rules for them in the future.
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. Thanks @goldmedal.
* recompute all node after model generate * apply optimization rule * run sqllogictests with datafusion direclty * enable tpch q20 * fix test and disable calcaulte and view test * fix test * build release profile only in stable-release * fix ibis ci
Description
Known Issue