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/__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/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 43b06edd0..1193a1b0b 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -32,6 +32,7 @@ from .sql import ( intersect, intersect_all, join, + lateral, literal, literal_column, modifier, |
