]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Set up base ARRAY to be compatible with postgresql.ARRAY.
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 11 Apr 2017 14:26:38 +0000 (10:26 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 11 Apr 2017 14:49:30 +0000 (10:49 -0400)
commit1b463058e3282c73d0fb361f78e96ecaa23ce9f4
tree3dc225d6233db6c15c57a5f6941229f92bb101d6
parent5b81dbcfa3888de65fc33b247353b38488199b00
Set up base ARRAY to be compatible with postgresql.ARRAY.

For some reason, when ARRAY was added to the base it was never linked
to postgresql.ARRAY.   Link the two types and also make base
ARRAY the schema event target so that it supports the same
features as postgresql.ARRAY.

Change-Id: I82fa6c9d2b8c5028dba3a009715f7bc296b2bc0b
Fixes: #3964
doc/build/changelog/changelog_12.rst
lib/sqlalchemy/dialects/postgresql/array.py
lib/sqlalchemy/sql/sqltypes.py
test/dialect/postgresql/test_types.py