-
Notifications
You must be signed in to change notification settings - Fork 2.3k
feat: Implement FFI_QueryPlanner #24028
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
base: main
Are you sure you want to change the base?
Changes from all commits
ba0a3dd
74842d9
57be2c2
45631bf
9ca40b3
b18d41d
05be265
a72ce75
bb15fc9
01966ad
df6ed3d
7dc6a8e
5fd78ec
15a4dfe
704df62
57797fe
f39ab0d
9f970e3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,6 +76,7 @@ impl EncryptionContext { | |
|
|
||
| #[cfg(not(feature = "parquet_encryption"))] | ||
| #[expect(dead_code)] | ||
| #[expect(clippy::unused_async)] | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Drive by fix to when you run clippy and don't have the |
||
| impl EncryptionContext { | ||
| pub(super) async fn get_file_decryption_properties( | ||
| &self, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -239,6 +239,7 @@ async fn set_writer_encryption_properties( | |
| } | ||
|
|
||
| #[cfg(not(feature = "parquet_encryption"))] | ||
| #[expect(clippy::unused_async)] | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Drive by fix to when you run clippy and don't have the |
||
| async fn set_writer_encryption_properties( | ||
| builder: WriterPropertiesBuilder, | ||
| _runtime: &Arc<RuntimeEnv>, | ||
|
|
||
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.
Drive by fix to when you run clippy and don't have the
parquet_encryptionfeature enabled.