Skip to content

Commit

Permalink
apache#2450 fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan02.yang committed Mar 12, 2024
1 parent 28e3cd3 commit 7e4603a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,7 @@ void testAlterTableRenameColumn() {
String oldColumnName = "col1";
String newColumnName = "col2";

sql(
String.format(
"ALTER TABLE %S ADD COLUMNS (col1 int)", tableName));
sql(String.format("ALTER TABLE %S ADD COLUMNS (col1 int)", tableName));
sql(
String.format(
"ALTER TABLE %S RENAME COLUMN %S TO %S", tableName, oldColumnName, newColumnName));
Expand Down

0 comments on commit 7e4603a

Please sign in to comment.