diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-11-09 15:04:22 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-11-09 15:04:22 -0500 |
commit | 8b1d59a95479802b5d568999e751f637ac310879 (patch) | |
tree | c2b604075c2e04caed59443e72f5fcd5a224ef51 /lib/sqlalchemy/sql/compiler.py | |
parent | bd1be0b7e0ecd76bdf6d26fd11cc42e1a473b319 (diff) | |
download | sqlalchemy-8b1d59a95479802b5d568999e751f637ac310879.tar.gz |
revert mis-commit from aa026c302c6b188a7e28508f9ecb603809b9e03f
A scratch line from #7269 was inadvertently committed here.
this needs to be in its own commit w/ tests.
Change-Id: I62796e18b05bbbd3b6225e9f27e1e63ab98cf24c
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 4611c5e13..646b49f22 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -3216,8 +3216,6 @@ class SQLCompiler(Compiled): # passed in. for ORM use this will convert from an ORM-state # SELECT to a regular "Core" SELECT. other composed operations # such as computation of joins will be performed. - kwargs["within_columns_clause"] = False - compile_state = select_stmt._compile_state_factory( select_stmt, self, **kwargs ) |