diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-05-12 14:34:00 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-05-12 15:09:33 -0400 |
| commit | 11a1d5e70450300310ff7fafeeb03fe1baa9380e (patch) | |
| tree | 1dcb0c0e3ee15763d7434b28229201218859be8a /doc | |
| parent | 169d6e6804c0e6bbb5f8b2fa4217e659b49a0d9f (diff) | |
| download | sqlalchemy-11a1d5e70450300310ff7fafeeb03fe1baa9380e.tar.gz | |
include create_type in pg.ENUM.adapt; test all attrs
Fixed apparently very old issue where the
:paramref:`_postgresql.ENUM.create_type` parameter, when set to its
non-default of ``False``, would not be propagated when the
:class:`_schema.Column` which it's a part of were copied, as is common when
using ORM Declarative mixins.
Fixes: #9773
Change-Id: I79a7c6f052ec39b42400d92bf591c791feca573b
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/unreleased_20/9773.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_20/9773.rst b/doc/build/changelog/unreleased_20/9773.rst new file mode 100644 index 000000000..839bfaab6 --- /dev/null +++ b/doc/build/changelog/unreleased_20/9773.rst @@ -0,0 +1,9 @@ +.. change:: + :tags: bug, postgresql + :tickets: 9773 + + Fixed apparently very old issue where the + :paramref:`_postgresql.ENUM.create_type` parameter, when set to its + non-default of ``False``, would not be propagated when the + :class:`_schema.Column` which it's a part of were copied, as is common when + using ORM Declarative mixins. |
