We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17f85ae commit 7e4ee10Copy full SHA for 7e4ee10
CHANGES
@@ -3,7 +3,7 @@ Development Version
3
4
Bug Fixes
5
* Fix a regression for identifiers with square bracktes notation (issue153).
6
-* Add missing SQL types (issue155, issue156).
+* Add missing SQL types (issue154, issue155, issue156).
7
8
Enhancements
9
* Improve formatting of HAVING statements.
sqlparse/keywords.py
@@ -518,6 +518,7 @@
518
'SIGNED': tokens.Name.Builtin,
519
'SMALLINT': tokens.Name.Builtin,
520
'UNSIGNED': tokens.Name.Builtin,
521
+ 'TINYINT': tokens.Name.Builtin,
522
'VARCHAR': tokens.Name.Builtin,
523
'VARCHAR2': tokens.Name.Builtin,
524
'VARYING': tokens.Name.Builtin,
0 commit comments