diff options
Diffstat (limited to 'sqlparse')
| -rw-r--r-- | sqlparse/keywords.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index af5e348..b5b59e8 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -811,6 +811,33 @@ KEYWORDS_PLPGSQL = { 'INHERIT': tokens.Keyword, 'INDEXES': tokens.Keyword, + 'BYTEA': tokens.Keyword, + 'BIGSERIAL': tokens.Keyword, + 'BIT VARYING': tokens.Keyword, + 'BOX': tokens.Keyword, + 'CHARACTER': tokens.Keyword, + 'CHARACTER VARYING': tokens.Keyword, + 'CIDR': tokens.Keyword, + 'CIRCLE': tokens.Keyword, + 'DOUBLE PRECISION': tokens.Keyword, + 'INET': tokens.Keyword, + 'JSON': tokens.Keyword, + 'JSONB': tokens.Keyword, + 'LINE': tokens.Keyword, + 'LSEG': tokens.Keyword, + 'MACADDR': tokens.Keyword, + 'MONEY': tokens.Keyword, + 'PATH': tokens.Keyword, + 'PG_LSN': tokens.Keyword, + 'POINT': tokens.Keyword, + 'POLYGON': tokens.Keyword, + 'SMALLSERIAL': tokens.Keyword, + 'TSQUERY': tokens.Keyword, + 'TSVECTOR': tokens.Keyword, + 'TXID_SNAPSHOT': tokens.Keyword, + 'UUID': tokens.Keyword, + 'XML': tokens.Keyword, + 'FOR': tokens.Keyword, 'IN': tokens.Keyword, 'LOOP': tokens.Keyword, |
