Skip to content

Commit ac92853

Browse files
committed
Support PL/SQL set-operator: MINUS
Fixes #825
1 parent 79a8b23 commit ac92853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/languages/plsql/plsql.formatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const tabularOnelineClauses = expandPhrases([
6666
'START WITH',
6767
]);
6868

69-
const reservedSetOperations = expandPhrases(['UNION [ALL]', 'EXCEPT', 'INTERSECT']);
69+
const reservedSetOperations = expandPhrases(['UNION [ALL]', 'MINUS', 'INTERSECT']);
7070

7171
const reservedJoins = expandPhrases([
7272
'JOIN',

0 commit comments

Comments
 (0)