@@ -456,7 +456,7 @@ public void testIf_removeOrderBy() throws Exception {
456456 SqlNode sqlNode = parser .parse ();
457457 PreparedSql sql =
458458 new NodePreparedSqlBuilder (
459- config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
459+ config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
460460 .build (sqlNode , Function .identity ());
461461 assertEquals ("select * from aaa" , sql .getRawSql ());
462462 assertEquals ("select * from aaa" , sql .getFormattedSql ());
@@ -471,7 +471,7 @@ public void testIf_removeGroupBy() throws Exception {
471471 SqlNode sqlNode = parser .parse ();
472472 PreparedSql sql =
473473 new NodePreparedSqlBuilder (
474- config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
474+ config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
475475 .build (sqlNode , Function .identity ());
476476 assertEquals ("select * from aaa" , sql .getRawSql ());
477477 assertEquals ("select * from aaa" , sql .getFormattedSql ());
@@ -668,7 +668,7 @@ public void testFor_removeOrderBy() throws Exception {
668668 SqlNode sqlNode = parser .parse ();
669669 PreparedSql sql =
670670 new NodePreparedSqlBuilder (
671- config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
671+ config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
672672 .build (sqlNode , Function .identity ());
673673 assertEquals ("select * from aaa" , sql .getRawSql ());
674674 assertEquals ("select * from aaa" , sql .getFormattedSql ());
@@ -685,7 +685,7 @@ public void testFor_removeGroupBy() throws Exception {
685685 SqlNode sqlNode = parser .parse ();
686686 PreparedSql sql =
687687 new NodePreparedSqlBuilder (
688- config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
688+ config , SqlKind .SELECT , "dummyPath" , evaluator , SqlLogType .FORMATTED )
689689 .build (sqlNode , Function .identity ());
690690 assertEquals ("select * from aaa" , sql .getRawSql ());
691691 assertEquals ("select * from aaa" , sql .getFormattedSql ());
0 commit comments