diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-21 10:57:40 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-21 10:57:40 -0400 |
commit | 07a4b6cbcda6e6ee6e67893c5a5d2fd01e5f125f (patch) | |
tree | a28aac49f1f8fd7aef5ae3ed85a2bd9ce98978d1 /lib/sqlalchemy/sql/compiler.py | |
parent | 732c613eeb890e7b7cbd04750468dac584151a31 (diff) | |
download | sqlalchemy-07a4b6cbcda6e6ee6e67893c5a5d2fd01e5f125f.tar.gz |
- Fixed bug where the negation of an EXISTS expression would not
be properly typed as boolean in the result, and also would fail to be
anonymously aliased in a SELECT list as is the case with a
non-negated EXISTS construct.
fixes #3682
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 8600dbaeb..8d5f585ce 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -1620,7 +1620,6 @@ class SQLCompiler(Compiled): select, select._prefixes, **kwargs) text += self.get_select_precolumns(select, **kwargs) - # the actual list of columns to print in the SELECT column list. inner_columns = [ c for c in [ |