Skip to content

Commit

Permalink
Added DDL test for CREATE TABLE like
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Nov 21, 2024
1 parent 81b5480 commit 89d78f1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ public void testCreateTableLike() {
StringBuffer clickHouseQuery = new StringBuffer();
String createDB = "CREATE TABLE new_tbl LIKE orig_tbl;";
mySQLDDLParserService.parseSql(createDB, "Persons", clickHouseQuery);
Assert.assertTrue("CREATE TABLE new_tbl LIKE orig_tbl;", clickHouseQuery.toString());
log.info("Create table " + clickHouseQuery);
}
@Test
Expand Down

0 comments on commit 89d78f1

Please sign in to comment.