summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-12-02 14:31:17 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-12-02 14:31:17 +0000
commite15d00303580a78d6e54da896406ba1ec3685ca1 (patch)
treefcefd9c25399951878ee540e8e1c9c17cdb39613 /doc
parent7ab9061217ef498edfa79c603885690a3f2cd529 (diff)
parent0f2baae6bf72353f785bad394684f2d6fa53e0ef (diff)
downloadsqlalchemy-e15d00303580a78d6e54da896406ba1ec3685ca1.tar.gz
Merge "Fix positional compiling bugs" into main
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_14/8827.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_14/8827.rst b/doc/build/changelog/unreleased_14/8827.rst
new file mode 100644
index 000000000..677277e45
--- /dev/null
+++ b/doc/build/changelog/unreleased_14/8827.rst
@@ -0,0 +1,9 @@
+.. change::
+ :tags: bug, sql
+ :tickets: 8827
+
+ Fixed a series of issues regarding positionally rendered bound parameters,
+ such as those used for SQLite, asyncpg, MySQL and others. Some compiled
+ forms would not maintain the order of parameters correctly, such as the
+ PostgreSQL ``regexp_replace()`` function as well as within the "nesting"
+ feature of the :class:`.CTE` construct first introduced in :ticket:`4123`.