summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2016-03-29 17:56:02 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-03-29 17:56:02 -0400
commitfb9d481e898b7695de8f75402970f67776fc47e1 (patch)
treed961277118cabb47d6a90b0fb8201fd5ff0e73a8 /lib/sqlalchemy/dialects/postgresql/base.py
parentd61919118072f4c31ba2ee0bd8c4ac22a92e92f4 (diff)
downloadsqlalchemy-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/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index c0a3708d4..eb3449e40 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -345,6 +345,7 @@ syntaxes. It uses SQLAlchemy's hints mechanism::
# DELETE FROM ONLY ...
table.delete().with_hint('ONLY', dialect_name='postgresql')
+
.. _postgresql_indexes:
Postgresql-Specific Index Options