diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-12-16 15:08:00 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-12-16 15:08:00 +0000 |
| commit | a41d0dc4bdcc698643b6a4d76f265f5aa4765bee (patch) | |
| tree | 91ce64509ed3e87b6456c8c69513771eba6c0403 /lib/sqlalchemy/dialects/postgresql/__init__.py | |
| parent | 95a6b50923660a5d69c5aa54d195582112c4358d (diff) | |
| parent | 7b84c850606c7b093b4260c08ff4636ff1bdbfef (diff) | |
| download | sqlalchemy-a41d0dc4bdcc698643b6a4d76f265f5aa4765bee.tar.gz | |
Merge "add explicit REGCONFIG, pg full text functions" into main
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/dialects/postgresql/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/__init__.py b/lib/sqlalchemy/dialects/postgresql/__init__.py index 7890541ff..d2e213bbc 100644 --- a/lib/sqlalchemy/dialects/postgresql/__init__.py +++ b/lib/sqlalchemy/dialects/postgresql/__init__.py @@ -37,6 +37,12 @@ from .dml import insert from .ext import aggregate_order_by from .ext import array_agg from .ext import ExcludeConstraint +from .ext import phraseto_tsquery +from .ext import plainto_tsquery +from .ext import to_tsquery +from .ext import to_tsvector +from .ext import ts_headline +from .ext import websearch_to_tsquery from .hstore import HSTORE from .hstore import hstore from .json import JSON @@ -72,8 +78,10 @@ from .types import MACADDR from .types import MONEY from .types import OID from .types import REGCLASS +from .types import REGCONFIG from .types import TIME from .types import TIMESTAMP +from .types import TSQUERY from .types import TSVECTOR # Alias psycopg also as psycopg_async @@ -102,6 +110,9 @@ __all__ = ( "MONEY", "OID", "REGCLASS", + "REGCONFIG", + "TSQUERY", + "TSVECTOR", "DOUBLE_PRECISION", "TIMESTAMP", "TIME", |
