diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-29 17:56:02 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-29 17:56:02 -0400 |
| commit | fb9d481e898b7695de8f75402970f67776fc47e1 (patch) | |
| tree | d961277118cabb47d6a90b0fb8201fd5ff0e73a8 /lib/sqlalchemy/sql/__init__.py | |
| parent | d61919118072f4c31ba2ee0bd8c4ac22a92e92f4 (diff) | |
| download | sqlalchemy-fb9d481e898b7695de8f75402970f67776fc47e1.tar.gz | |
- Added :meth:`.Select.lateral` and related constructs to allow
for the SQL standard LATERAL keyword, currently only supported
by Postgresql. fixes #2857
Diffstat (limited to 'lib/sqlalchemy/sql/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/sql/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/__init__.py b/lib/sqlalchemy/sql/__init__.py index a56e29cf5..7f7abacc2 100644 --- a/lib/sqlalchemy/sql/__init__.py +++ b/lib/sqlalchemy/sql/__init__.py @@ -46,6 +46,7 @@ from .expression import ( intersect_all, join, label, + lateral, literal, literal_column, modifier, |
