From fb9d481e898b7695de8f75402970f67776fc47e1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 29 Mar 2016 17:56:02 -0400 Subject: - Added :meth:`.Select.lateral` and related constructs to allow for the SQL standard LATERAL keyword, currently only supported by Postgresql. fixes #2857 --- lib/sqlalchemy/dialects/postgresql/base.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/sqlalchemy/dialects/postgresql') 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 -- cgit v1.2.1