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:58:08 -0400 |
| commit | dfe49c7b7f0c83ced11fdbceef14d89c82647f0b (patch) | |
| tree | 58c15f9cf9cd7f2c31e294927d6d04689472d68a /lib/sqlalchemy/sql/compiler.py | |
| parent | e3ea0c8b961b4946b0e63fd8fe8a24c9679cbd33 (diff) | |
| download | sqlalchemy-dfe49c7b7f0c83ced11fdbceef14d89c82647f0b.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
(cherry picked from commit 07a4b6cbcda6e6ee6e67893c5a5d2fd01e5f125f)
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 9f5400455..496844d96 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -1572,7 +1572,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 [ |
