File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/test/java/net/sf/jsqlparser/statement/insert Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -894,7 +894,8 @@ public void testOverridingSystemValueInsertsParse(String sqlStr) throws JSQLPars
894894 "INSERT INTO overriding (foo) OVERRIDING SYSTEM VALUE VALUES (1) ON CONFLICT (foo) DO NOTHING" ,
895895 "INSERT INTO overriding (foo) OVERRIDING SYSTEM VALUE SELECT bar FROM b WHERE y = 1 ON CONFLICT (foo) DO NOTHING"
896896 })
897- public void testOverridingSystemValueInsertsParseWithTableNamedOverriding (String sqlStr ) throws JSQLParserException {
897+ public void testOverridingSystemValueInsertsParseWithTableNamedOverriding (String sqlStr )
898+ throws JSQLParserException {
898899 Insert insert = (Insert ) assertSqlCanBeParsedAndDeparsed (sqlStr );
899900 assertEquals ("overriding" , insert .getTable ().getName ());
900901 }
You can’t perform that action at this time.
0 commit comments