We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c8b3b commit de8cb98Copy full SHA for de8cb98
sqlglot/dialects/spark2.py
@@ -376,7 +376,7 @@ def altercolumn_sql(self, expression: exp.AlterColumn) -> str:
376
if new_name == this:
377
if comment:
378
return f"ALTER COLUMN {this} COMMENT {comment}"
379
- return super().altercolumn_sql(expression)
+ return super(Hive.Generator, self).altercolumn_sql(expression)
380
return f"RENAME COLUMN {this} TO {new_name}"
381
382
def renamecolumn_sql(self, expression: exp.RenameColumn) -> str:
0 commit comments