diff --git a/test/corpus/watcom/select-list-comma-spacing.expected.sql b/test/corpus/watcom/select-list-comma-spacing.expected.sql new file mode 100644 index 0000000..70b2641 --- /dev/null +++ b/test/corpus/watcom/select-list-comma-spacing.expected.sql @@ -0,0 +1,4 @@ +BEGIN + SELECT "oGtin", "oCharge", "oSeriennr" + SELECT 'a,b', "x,y", 1 + 2 +END; diff --git a/test/corpus/watcom/select-list-comma-spacing.input.sql b/test/corpus/watcom/select-list-comma-spacing.input.sql new file mode 100644 index 0000000..4a5dd60 --- /dev/null +++ b/test/corpus/watcom/select-list-comma-spacing.input.sql @@ -0,0 +1,4 @@ +begin +select "oGtin","oCharge","oSeriennr" +select 'a,b',"x,y",1+2 +end; diff --git a/test/corpus/watcom/update-set-continuations.expected.sql b/test/corpus/watcom/update-set-continuations.expected.sql new file mode 100644 index 0000000..304e976 --- /dev/null +++ b/test/corpus/watcom/update-set-continuations.expected.sql @@ -0,0 +1,6 @@ +BEGIN + UPDATE "DBA"."OP_MATERIAL_PLAN" + SET "Menge" = "vCurrentMenge" - "vMenge", + "Zeitpunkt" = CURRENT time + WHERE "lfd" = "iOPMaterialPlanLfd" +END; diff --git a/test/corpus/watcom/update-set-continuations.input.sql b/test/corpus/watcom/update-set-continuations.input.sql new file mode 100644 index 0000000..134cd33 --- /dev/null +++ b/test/corpus/watcom/update-set-continuations.input.sql @@ -0,0 +1,7 @@ +begin +update "DBA"."OP_MATERIAL_PLAN" +set "Menge" = "vCurrentMenge"-"vMenge", +"Zeitpunkt" += current time +where "lfd" = "iOPMaterialPlanLfd" +end;