From 8c05a3bf6599f92bbf8d2246123597e8966f3a52 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 18 Jan 2012 12:42:54 -0500 Subject: - [feature] Added "false()" and "true()" expression constructs to sqlalchemy.sql namespace, though not part of __all__ as of yet. - [bug] sql.false() and sql.true() compile to 0 and 1, respectively in sqlite [ticket:2368] --- lib/sqlalchemy/sql/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/sqlalchemy/sql') diff --git a/lib/sqlalchemy/sql/__init__.py b/lib/sqlalchemy/sql/__init__.py index e82d072c1..eac845dcd 100644 --- a/lib/sqlalchemy/sql/__init__.py +++ b/lib/sqlalchemy/sql/__init__.py @@ -34,6 +34,7 @@ from sqlalchemy.sql.expression import ( except_all, exists, extract, + false, func, insert, intersect, @@ -53,6 +54,7 @@ from sqlalchemy.sql.expression import ( subquery, table, text, + true, tuple_, type_coerce, union, -- cgit v1.2.1