-
Notifications
You must be signed in to change notification settings - Fork 0
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
WIP Built some initial e2e datafusion infrastructure #10
base: main
Are you sure you want to change the base?
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.
Should we call this optd-datafusion instead or something more descriptive than "infra"?
Make sure to fix all of the clippy lints (you can either look at the Files changed
tab on GitHub or just run cargo clippy --all-targets
Also, please add comments on everything because I can't really understand the code...
See the official Rust style guide as well for things that clippy cant check (things like full punctuation on comments)
Problem
We want to be able to run our queries on datafusion.
Summary of changes
The only update I have is that I have setup the datafusion e2e to be able to run multiple queries and print the results and the plans. Currently, since we do not have an optimizer built out and we don’t have an logical plan IR to convert the datafusion logical plan into, I am simply running the datafusion optimizer.