diff options
author | Renato Massaro <renato@hackerexperience.com> | 2015-07-14 15:42:46 -0300 |
---|---|---|
committer | Renato Massaro <renato@hackerexperience.com> | 2015-07-14 15:42:46 -0300 |
commit | f272a4d92295d69446aea712e2927c1c731d0e6c (patch) | |
tree | 7d3866744f4333eca78f35db6c197f20f38061c1 /lib/sqlalchemy/dialects/postgresql/__init__.py | |
parent | b68c9ac93eea62a1f4ae2c0701e5af7c432e9432 (diff) | |
download | sqlalchemy-pr/187.tar.gz |
Add basic LTREE support; missing testspr/187
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/__init__.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/__init__.py b/lib/sqlalchemy/dialects/postgresql/__init__.py index 98fe6f085..a5ddbd575 100644 --- a/lib/sqlalchemy/dialects/postgresql/__init__.py +++ b/lib/sqlalchemy/dialects/postgresql/__init__.py @@ -13,7 +13,7 @@ from .base import \ INTEGER, BIGINT, SMALLINT, VARCHAR, CHAR, TEXT, NUMERIC, FLOAT, REAL, \ INET, CIDR, UUID, BIT, MACADDR, OID, DOUBLE_PRECISION, TIMESTAMP, TIME, \ DATE, BYTEA, BOOLEAN, INTERVAL, ARRAY, ENUM, dialect, array, Any, All, \ - TSVECTOR, DropEnumType + TSVECTOR, DropEnumType, LTREE, LQUERY, LTXTQUERY from .constraints import ExcludeConstraint from .hstore import HSTORE, hstore from .json import JSON, JSONElement, JSONB @@ -27,5 +27,5 @@ __all__ = ( 'INTERVAL', 'ARRAY', 'ENUM', 'dialect', 'Any', 'All', 'array', 'HSTORE', 'hstore', 'INT4RANGE', 'INT8RANGE', 'NUMRANGE', 'DATERANGE', 'TSRANGE', 'TSTZRANGE', 'json', 'JSON', 'JSONB', 'JSONElement', - 'DropEnumType' + 'DropEnumType', 'LTREE', 'LQUERY', 'LTXTQUERY' ) |