diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-07-12 00:16:34 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-07-12 00:16:34 +0000 |
| commit | 6f39cd53033bc232e3ffec10c5e0a91b5d4a2785 (patch) | |
| tree | b4891ff7ec946ee13e01c6d1a7dbfc00e2291068 /lib/sqlalchemy/sql | |
| parent | ac0c1aed2b3521393e054fde07f5c6c75153bc50 (diff) | |
| parent | 520b808db255eba3fdccfb93656a79008154dcae (diff) | |
| download | sqlalchemy-6f39cd53033bc232e3ffec10c5e0a91b5d4a2785.tar.gz | |
Merge "repair schema_translate_map for schema type use cases"
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 4b3b2c293..e92ffcd9a 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -1497,6 +1497,7 @@ class SQLCompiler(Compiled): def visit_typeclause(self, typeclause, **kw): kw["type_expression"] = typeclause + kw["identifier_preparer"] = self.preparer return self.dialect.type_compiler.process(typeclause.type, **kw) def post_process_text(self, text): |
