summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2023-04-28 21:24:43 +0200
committerFederico Caselli <cfederico87@gmail.com>2023-04-28 21:24:43 +0200
commitac0785dc3e56ebe9fc8caa78cd9c564d5e796da3 (patch)
tree2b5b0f58069a9ac28dba9f622e086f267c8df959 /docs
parentabd175bf86b1091fe444b91c4f98dc9ea97ff723 (diff)
downloadalembic-ac0785dc3e56ebe9fc8caa78cd9c564d5e796da3.tar.gz
Fix ExcludeConstraint with func.
Fix autogenerate issue with PostgreSQL :class:`.ExcludeConstraint` that included sqlalchemy functions. The function text was previously rendered as a plain string without surrounding with ``text()``. Fixes: #1230 Change-Id: I0d59e04d5a64132ed86f92a27e4247ac9703f3e0
Diffstat (limited to 'docs')
-rw-r--r--docs/build/unreleased/1230.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/build/unreleased/1230.rst b/docs/build/unreleased/1230.rst
new file mode 100644
index 0000000..7d902d5
--- /dev/null
+++ b/docs/build/unreleased/1230.rst
@@ -0,0 +1,7 @@
+.. change::
+ :tags: bug, postgresql
+ :tickets: 1230
+
+ Fix autogenerate issue with PostgreSQL :class:`.ExcludeConstraint`
+ that included sqlalchemy functions. The function text was previously
+ rendered as a plain string without surrounding with ``text()``.