Skip to content

Commit

Permalink
apache#2449 fix unit test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan02.yang committed Mar 14, 2024
1 parent 3d68d7d commit a8aa499
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ void testAlterTableUpdateColumnComment() {
"ALTER TABLE %S ADD COLUMNS (col1 int comment '%S')", tableName, oldColumnComment));
sql(
String.format(
"ALTER TABLE %S CHANGE COLUMN col1 col1 int comment '%S'",
"ALTER TABLE %S CHANGE COLUMN col1 col1 int comment '%s'",
tableName, newColumnComment));
ArrayList<SparkColumnInfo> updateCommentColumns = new ArrayList<>(simpleTableColumns);
updateCommentColumns.add(SparkColumnInfo.of("col1", DataTypes.IntegerType, newColumnComment));
Expand Down

0 comments on commit a8aa499

Please sign in to comment.