diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2019-06-17 01:57:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2019-06-17 01:57:34 +0000 |
commit | f94648bb922a73423d73f17c2148253fcc5893b9 (patch) | |
tree | fa1c612fc7ca487e17aba0c06e95b1d5ac3e8266 /lib/sqlalchemy/sql/compiler.py | |
parent | 79d07c9abc7d4d3abb6bf2ca5ca66e87d3a11f08 (diff) | |
parent | 009acc95b8804b5b62fbd43c6fdd61d6fd407ef7 (diff) | |
download | sqlalchemy-f94648bb922a73423d73f17c2148253fcc5893b9.tar.gz |
Merge "Turn off the is_literal flag when proxying literal_column() to Label"
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 6fcf1a524..7922054f8 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -851,6 +851,8 @@ class SQLCompiler(Compiled): ) if is_literal: + # note we are not currently accommodating for + # literal_column(quoted_name('ident', True)) here name = self.escape_literal_column(name) else: name = self.preparer.quote(name) |