]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
The operators for the Postgresql ARRAY type supports
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 22 Apr 2013 20:57:15 +0000 (16:57 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 22 Apr 2013 20:57:15 +0000 (16:57 -0400)
commit422f4718715ad89346f42caf03bdd2ed745e5a23
tree8f6f5737bfdf953ac5aa067b2978e08c29e20c48
parente79fd50e586a4dcdefcd1181d726f47a713d02d3
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]
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/dialects/postgresql/base.py
test/dialect/test_postgresql.py