summaryrefslogtreecommitdiff
path: root/doc/build
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-14 20:26:38 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-14 20:26:38 -0400
commitd2193f53c10d29a7a9b1846ebf322fbced55041f (patch)
treec4f97c44c32abfe913b0bc5c05c332e696f05c7a /doc/build
parent6fd0bc7c62849a1dc34ca7d93aeeaaff25897648 (diff)
downloadsqlalchemy-d2193f53c10d29a7a9b1846ebf322fbced55041f.tar.gz
- Fix bug in naming convention feature where using a check
constraint convention that includes ``constraint_name`` would then force all :class:`.Boolean` and :class:`.Enum` types to require names as well, as these implicitly create a constraint, even if the ultimate target backend were one that does not require generation of the constraint such as Postgresql. The mechanics of naming conventions for these particular constraints has been reorganized such that the naming determination is done at DDL compile time, rather than at constraint/table construction time. fixes #3067
Diffstat (limited to 'doc/build')
-rw-r--r--doc/build/changelog/changelog_09.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 8be2346f6..24803af35 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -15,6 +15,22 @@
:released:
.. change::
+ :tags: bug, sql
+ :tickets: 3067
+ :versions: 1.0.0
+
+ Fix bug in naming convention feature where using a check
+ constraint convention that includes ``constraint_name`` would
+ then force all :class:`.Boolean` and :class:`.Enum` types to
+ require names as well, as these implicitly create a
+ constraint, even if the ultimate target backend were one that does
+ not require generation of the constraint such as Postgresql.
+ The mechanics of naming conventions for these particular
+ constraints has been reorganized such that the naming
+ determination is done at DDL compile time, rather than at
+ constraint/table construction time.
+
+ .. change::
:tags: bug, mssql
:tickets: 3025