Skip to content

Commit 7e4ee10

Browse files
committed
Add TINYINT keyword (fixes andialbrecht#154).
1 parent 17f85ae commit 7e4ee10

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Development Version
33

44
Bug Fixes
55
* Fix a regression for identifiers with square bracktes notation (issue153).
6-
* Add missing SQL types (issue155, issue156).
6+
* Add missing SQL types (issue154, issue155, issue156).
77

88
Enhancements
99
* Improve formatting of HAVING statements.

sqlparse/keywords.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@
518518
'SIGNED': tokens.Name.Builtin,
519519
'SMALLINT': tokens.Name.Builtin,
520520
'UNSIGNED': tokens.Name.Builtin,
521+
'TINYINT': tokens.Name.Builtin,
521522
'VARCHAR': tokens.Name.Builtin,
522523
'VARCHAR2': tokens.Name.Builtin,
523524
'VARYING': tokens.Name.Builtin,

0 commit comments

Comments
 (0)