diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-27 10:28:01 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-27 10:32:21 -0400 |
commit | 5295a683f9acdad59871ad7b7e6cead834c899e2 (patch) | |
tree | fc7c153957e5ab81360e49e53bda00353891a142 /lib/sqlalchemy/dialects/postgresql/__init__.py | |
parent | 4d63b472f272138eca0286fd6c4a7bf52e9be3c3 (diff) | |
download | sqlalchemy-5295a683f9acdad59871ad7b7e6cead834c899e2.tar.gz |
- add PG-specific aggregate_order_by(), references #3132
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/__init__.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/__init__.py b/lib/sqlalchemy/dialects/postgresql/__init__.py index 28f66f9cb..538a2e800 100644 --- a/lib/sqlalchemy/dialects/postgresql/__init__.py +++ b/lib/sqlalchemy/dialects/postgresql/__init__.py @@ -18,6 +18,7 @@ from .constraints import ExcludeConstraint from .hstore import HSTORE, hstore from .json import JSON, JSONB from .array import array, ARRAY, Any, All +from .ext import aggregate_order_by from .ranges import INT4RANGE, INT8RANGE, NUMRANGE, DATERANGE, TSRANGE, \ TSTZRANGE @@ -29,5 +30,5 @@ __all__ = ( 'INTERVAL', 'ARRAY', 'ENUM', 'dialect', 'array', 'HSTORE', 'hstore', 'INT4RANGE', 'INT8RANGE', 'NUMRANGE', 'DATERANGE', 'TSRANGE', 'TSTZRANGE', 'json', 'JSON', 'JSONB', 'Any', 'All', - 'DropEnumType', 'CreateEnumType', 'ExcludeConstraint' + 'DropEnumType', 'CreateEnumType', 'ExcludeConstraint', 'aggregate_order_by' ) |