diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-04-01 18:32:23 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-04-01 18:32:23 +0000 |
| commit | ac12f663126a3977b49a9adca872be128a53b8d6 (patch) | |
| tree | 14a4a5209b6d732113ee8cdd801ac72c74747241 /lib/sqlalchemy/sql | |
| parent | ab01f893f8c489e2fe981699e022c76e0318ec77 (diff) | |
| parent | 115e4d1a491173276821bdafd967666d71cdb7a8 (diff) | |
| download | sqlalchemy-ac12f663126a3977b49a9adca872be128a53b8d6.tar.gz | |
Merge "Apply quoting to render_derived() names"
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 276209103..32530629b 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -2662,7 +2662,7 @@ class SQLCompiler(Compiled): ", ".join( "%s%s" % ( - col.name, + self.preparer.quote(col.name), " %s" % self.dialect.type_compiler.process( col.type, **kwargs |
