diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-22 16:57:15 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-22 16:57:15 -0400 |
| commit | 422f4718715ad89346f42caf03bdd2ed745e5a23 (patch) | |
| tree | 8f6f5737bfdf953ac5aa067b2978e08c29e20c48 /doc | |
| parent | e79fd50e586a4dcdefcd1181d726f47a713d02d3 (diff) | |
| download | sqlalchemy-422f4718715ad89346f42caf03bdd2ed745e5a23.tar.gz | |
The operators for the Postgresql ARRAY type supports
input types of sets, generators, etc. but only when a dimension
is specified for the ARRAY; otherwise, the dialect
needs to peek inside of "arr[0]" to guess how many
dimensions are in use. If this occurs with a non
list/tuple type, the error message is now informative
and directs to specify a dimension for the ARRAY.
[ticket:2681]
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 7f98c4b0b..b64a188f7 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -7,6 +7,18 @@ :version: 0.8.1 .. change:: + :tags: bug, postgresql + :tickets: 2681 + + The operators for the Postgresql ARRAY type supports + input types of sets, generators, etc. but only when a dimension + is specified for the ARRAY; otherwise, the dialect + needs to peek inside of "arr[0]" to guess how many + dimensions are in use. If this occurs with a non + list/tuple type, the error message is now informative + and directs to specify a dimension for the ARRAY. + + .. change:: :tags: bug, mysql :pullreq: 55 |
