aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-06-09 14:39:19 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-06-09 14:39:19 +0300
commitc04b663c7bb4b750deeb8f48f620497ec13da8fa (patch)
tree151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py
parent0d55ca22c507d18c2f35718687e0b06d9915397b (diff)
downloadydb-c04b663c7bb4b750deeb8f48f620497ec13da8fa.tar.gz
intermediate changes
ref:2d4f292087954c9344efdabb7b2a67f466263c65
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py')
-rw-r--r--contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py b/contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py
index 93bc42059a..3305f84518 100644
--- a/contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py
+++ b/contrib/python/Pygments/py3/pygments/lexers/_postgres_builtins.py
@@ -4,11 +4,12 @@
Self-updating data files for PostgreSQL lexer.
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ Run with `python -I` to update itself.
+
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
-
# Autogenerated: please edit them if you like wasting your time.
KEYWORDS = (
@@ -31,10 +32,12 @@ KEYWORDS = (
'ARRAY',
'AS',
'ASC',
+ 'ASENSITIVE',
'ASSERTION',
'ASSIGNMENT',
'ASYMMETRIC',
'AT',
+ 'ATOMIC',
'ATTACH',
'ATTRIBUTE',
'AUTHORIZATION',
@@ -47,6 +50,7 @@ KEYWORDS = (
'BIT',
'BOOLEAN',
'BOTH',
+ 'BREADTH',
'BY',
'CACHE',
'CALL',
@@ -74,6 +78,7 @@ KEYWORDS = (
'COMMENTS',
'COMMIT',
'COMMITTED',
+ 'COMPRESSION',
'CONCURRENTLY',
'CONFIGURATION',
'CONFLICT',
@@ -115,6 +120,7 @@ KEYWORDS = (
'DELIMITER',
'DELIMITERS',
'DEPENDS',
+ 'DEPTH',
'DESC',
'DETACH',
'DICTIONARY',
@@ -150,6 +156,7 @@ KEYWORDS = (
'FAMILY',
'FETCH',
'FILTER',
+ 'FINALIZE',
'FIRST',
'FLOAT',
'FOLLOWING',
@@ -331,6 +338,7 @@ KEYWORDS = (
'RESET',
'RESTART',
'RESTRICT',
+ 'RETURN',
'RETURNING',
'RETURNS',
'REVOKE',
@@ -531,10 +539,12 @@ PSEUDO_TYPES = (
'anyarray',
'anycompatible',
'anycompatiblearray',
+ 'anycompatiblemultirange',
'anycompatiblenonarray',
'anycompatiblerange',
'anyelement',
'anyenum',
+ 'anymultirange',
'anynonarray',
'anyrange',
'cstring',
@@ -564,10 +574,7 @@ PLPGSQL_KEYWORDS = (
if __name__ == '__main__': # pragma: no cover
import re
- try:
- from urllib import urlopen
- except ImportError:
- from urllib.request import urlopen
+ from urllib.request import urlopen
from pygments.util import format_lines