-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Create datafusion-physical-optimizer
crate
#11507
Conversation
workspace = true | ||
|
||
[dependencies] | ||
datafusion-common = { workspace = true, default-features = true } |
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.
Is this the same as datafusion-common = { workspace = true }
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.
It might be same because datafusion-common
doesn't specify default feature. I just followed datafusion-optimizer
's Cargo.toml here.
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.
👍
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 @lewiszlw
FYI @mustafasrepo and @ozankabak
@@ -42,4 +42,4 @@ mod utils; | |||
#[cfg(test)] | |||
pub mod test_utils; | |||
|
|||
pub use optimizer::PhysicalOptimizerRule; | |||
pub use datafusion_physical_optimizer::*; |
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.
👍
I like the idea of moving the physical optimizer into its own crate, thank you |
* Create datafusion-physical-optimizer crate * fmt .md * Update Cargo.lock in datafusion-cli * fmt toml and fix doc
* Create datafusion-physical-optimizer crate * fmt .md * Update Cargo.lock in datafusion-cli * fmt toml and fix doc
Which issue does this PR close?
Part of #11502.
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?