Skip to content

Commit

Permalink
Fix unit test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Jul 26, 2024
1 parent 70fe0c1 commit a3015cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public void testAlterDatabaseAddColumnNullable() {
// Before, After
@Test
public void testAlterDatabaseAddMultipleColumns1() {
String expectedClickHouseQuery = "ALTER TABLE employees.employees ADD COLUMN ship_spec Nullable(String) first, ADD COLUMN somecol Nullable(Int32) after start_build,";
String expectedClickHouseQuery = "ALTER TABLE employees.employees ADD COLUMN ship_spec Nullable(String) first, ADD COLUMN somecol Nullable(Int32) after start_build";
StringBuffer clickHouseQuery = new StringBuffer();
String query = "alter table employees.employees add column ship_spec varchar(150) first, add somecol int after start_build, algorithm=instant;";
mySQLDDLParserService.parseSql(query, "employees", clickHouseQuery);
Expand Down

0 comments on commit a3015cc

Please sign in to comment.