Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 810b546

Browse files
committed
Merge pull request andialbrecht#123 from crorella/issue_122
Fix: fixed COALESCE keyword, it had a typo. Add: Added MERGE keyword
2 parents f871291 + 930895f commit 810b546

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sqlparse/keywords.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
'CLOB': tokens.Keyword,
6262
'CLOSE': tokens.Keyword,
6363
'CLUSTER': tokens.Keyword,
64-
'COALSECE': tokens.Keyword,
64+
'COALESCE': tokens.Keyword,
6565
'COBOL': tokens.Keyword,
6666
'COLLATE': tokens.Keyword,
6767
'COLLATION': tokens.Keyword,
@@ -530,6 +530,7 @@
530530
'DELETE': tokens.Keyword.DML,
531531
'UPDATE': tokens.Keyword.DML,
532532
'REPLACE': tokens.Keyword.DML,
533+
'MERGE': tokens.Keyword.DML,
533534
'DROP': tokens.Keyword.DDL,
534535
'CREATE': tokens.Keyword.DDL,
535536
'ALTER': tokens.Keyword.DDL,

0 commit comments

Comments
 (0)