Skip to content

Commit c722f56

Browse files
authored
fix(datafusion): remove unneeded wildcard pattern for clippy 1.97.0 (#529)
1 parent 677cc06 commit c722f56

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

crates/integrations/datafusion/src/sql_context.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,11 +1038,7 @@ impl SQLContext {
10381038
AlterTableOperation::AddColumn { column_def, .. } => {
10391039
changes.push(column_def_to_add_column(column_def)?);
10401040
}
1041-
AlterTableOperation::DropColumn {
1042-
column_names,
1043-
if_exists: _,
1044-
..
1045-
} => {
1041+
AlterTableOperation::DropColumn { column_names, .. } => {
10461042
for col in column_names {
10471043
changes.push(SchemaChange::drop_column(col.value.clone()));
10481044
}

0 commit comments

Comments
 (0)