This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-rust.git
The following commit(s) were added to refs/heads/main by this push:
new c722f56 fix(datafusion): remove unneeded wildcard pattern for clippy
1.97.0 (#529)
c722f56 is described below
commit c722f56844a5572c9cb2b3d5ce7cd7e0a994e0f9
Author: hechao <[email protected]>
AuthorDate: Thu Jul 16 21:49:24 2026 +0800
fix(datafusion): remove unneeded wildcard pattern for clippy 1.97.0 (#529)
---
crates/integrations/datafusion/src/sql_context.rs | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/crates/integrations/datafusion/src/sql_context.rs
b/crates/integrations/datafusion/src/sql_context.rs
index f9d81c8..4ad6897 100644
--- a/crates/integrations/datafusion/src/sql_context.rs
+++ b/crates/integrations/datafusion/src/sql_context.rs
@@ -1038,11 +1038,7 @@ impl SQLContext {
AlterTableOperation::AddColumn { column_def, .. } => {
changes.push(column_def_to_add_column(column_def)?);
}
- AlterTableOperation::DropColumn {
- column_names,
- if_exists: _,
- ..
- } => {
+ AlterTableOperation::DropColumn { column_names, .. } => {
for col in column_names {
changes.push(SchemaChange::drop_column(col.value.clone()));
}