diff options
author | Federico Caselli <cfederico87@gmail.com> | 2023-02-22 21:57:19 +0100 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2023-02-22 21:57:19 +0100 |
commit | 71693c94d52612a5e88128575ff308ee4a923c00 (patch) | |
tree | 40a75810ea3c857e3bd7bef056e5cf948f61f3a4 /lib/sqlalchemy/dialects/postgresql/base.py | |
parent | fc57bafbae9d67b7ce95e26c939ca957c366b0f7 (diff) | |
download | sqlalchemy-71693c94d52612a5e88128575ff308ee4a923c00.tar.gz |
ExcludeConstraint literal_compile
ExcludeConstraint correctly uses literal compile
when compiling expression ddl.
Fixes: #9349
Change-Id: I11a994ac46556a972afc696a2baad7ddbdd3de97
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 255c72042..3ba103802 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -2350,8 +2350,9 @@ class PGDDLCompiler(compiler.DDLCompiler): constraint ) elements = [] + kw["include_table"] = False + kw["literal_binds"] = True for expr, name, op in constraint._render_exprs: - kw["include_table"] = False exclude_element = self.sql_compiler.process(expr, **kw) + ( (" " + constraint.ops[expr.key]) if hasattr(expr, "key") and expr.key in constraint.ops |