-
Notifications
You must be signed in to change notification settings - Fork 6
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
Multistatement Support #63
base: master
Are you sure you want to change the base?
Conversation
@iPeluwa Thank you for the patch! The features added into this library look good to me. There are some format and lint issues. |
@iPeluwa you can run cargo clippy and cargo fmt locally to fix those lint and format issues |
…ster UDF for compatibility
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.
Again, please configure your editor to run format on save
} | ||
} | ||
} | ||
*sc_guard = new_context; |
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 already got this config mutable, why we need to recreate the whole session_context here?
// Build a ListArray containing "public" | ||
let mut list_builder = ListBuilder::new(StringBuilder::new()); | ||
for _ in 0..num_rows { | ||
list_builder.values().append_value("public"); |
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.
Can we avoid hardcode public here? Is it possible to read schemas from SessionContext
?
No description provided.