We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677cc06 commit c722f56Copy full SHA for c722f56
1 file changed
crates/integrations/datafusion/src/sql_context.rs
@@ -1038,11 +1038,7 @@ impl SQLContext {
1038
AlterTableOperation::AddColumn { column_def, .. } => {
1039
changes.push(column_def_to_add_column(column_def)?);
1040
}
1041
- AlterTableOperation::DropColumn {
1042
- column_names,
1043
- if_exists: _,
1044
- ..
1045
- } => {
+ AlterTableOperation::DropColumn { column_names, .. } => {
1046
for col in column_names {
1047
changes.push(SchemaChange::drop_column(col.value.clone()));
1048
0 commit comments