summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2023-04-07 20:35:37 +0200
committerFederico Caselli <cfederico87@gmail.com>2023-04-07 20:36:45 +0200
commit7e285f2234010c241a357ae1d6d77a6fc43177bb (patch)
tree811cfaa6c830c1851566b0c06c30c0b59d50400f /doc
parent9bbb70ffd559c1a9e085fb379a5be4b06da0cd7c (diff)
downloadsqlalchemy-7e285f2234010c241a357ae1d6d77a6fc43177bb.tar.gz
Fix reflection of long expressions in postgresql
Fixed issue that prevented reflection of expression based indexes with long expressions in PostgreSQL. The expression where erroneously truncated to the identifier length (that's 63 bytes by default). Fixes: #9615 Change-Id: I50727b0699e08fa25f10f3c94dcf8b79534bfb75
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_20/9615.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_20/9615.rst b/doc/build/changelog/unreleased_20/9615.rst
new file mode 100644
index 000000000..ccc37577e
--- /dev/null
+++ b/doc/build/changelog/unreleased_20/9615.rst
@@ -0,0 +1,7 @@
+.. change::
+ :tags: bug, postgresql
+ :tickets: 9615
+
+ Fixed issue that prevented reflection of expression based indexes
+ with long expressions in PostgreSQL. The expression where erroneously
+ truncated to the identifier length (that's 63 bytes by default).