summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPaul <pbrackin@gmail.com>2017-02-20 15:20:17 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2017-02-21 16:28:51 -0500
commitf1cf86ea6a33a6fa09de4fb727f6383ce6698304 (patch)
treeeecf5d37a5392d1894c0f069d8ba27374d866365 /docs
parent44d028f42b2a27b8710f2d4d9443e11515814eb4 (diff)
downloadalembic-f1cf86ea6a33a6fa09de4fb727f6383ce6698304.tar.gz
Fix postgresql automigration for ARRAY types
Adds a new codepath into render._repr_type() that will consult the dialect impl for specific types. On the postgresql side, the exisiting repr() is combined with a replace featuring the full autogen render of the nested type. Co-authored-by: Mike Bayer <mike_mp@zzzcomputing.com> Fixes: #85 Change-Id: I8796bfeea27d48e6f8bb5ea4562bdc04961ba0d5 Pull-request: https://github.com/zzzeek/alembic/pull/38
Diffstat (limited to 'docs')
-rw-r--r--docs/build/changelog.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 2ccdf6c..ca6834d 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -7,6 +7,15 @@ Changelog
:version: 0.9.0
:released:
+ .. change:: 85
+ :tags: bug, postgresql
+ :tickets: 85
+
+ Fixed bug where Postgresql ARRAY type would not render the import prefix
+ for the inner type; additionally, user-defined renderers take place
+ for the inner type as well as the outer type. Pull request courtesy
+ Paul Brackin.
+
.. change:: fk_schema_compare
:tags: bug, operations