]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- build out a new base type for Array, as well as new any/all operators
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Aug 2015 21:57:36 +0000 (17:57 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 25 Aug 2015 22:24:46 +0000 (18:24 -0400)
commit7024745a142e261efb6d878389d01a06673b655c
tree0f89b8309d1d854571152c94276c523bfa096d24
parentd57e5edbcdf915168c613cdd6da0bd7bea877fa4
- build out a new base type for Array, as well as new any/all operators
- any/all work for Array as well as subqueries, accepted by MySQL
- Postgresql ARRAY now subclasses Array
- fixes #3516
22 files changed:
doc/build/changelog/changelog_11.rst
doc/build/changelog/migration_11.rst
doc/build/core/sqlelement.rst
doc/build/core/type_basics.rst
doc/build/dialects/postgresql.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/dialects/postgresql/__init__.py
lib/sqlalchemy/dialects/postgresql/array.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/default_comparator.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/functions.py
lib/sqlalchemy/sql/operators.py
lib/sqlalchemy/sql/sqltypes.py
lib/sqlalchemy/types.py
test/dialect/mysql/test_query.py
test/dialect/postgresql/test_types.py
test/sql/test_operators.py
test/sql/test_types.py