Skip to content

Commit 930895f

Browse files
author
Cristian Orellana
committed
Fix: fixed COALESCE keyword, it had a type. Add: Added MERGE keyword
1 parent f871291 commit 930895f

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)