diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-24 17:57:36 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-25 18:24:46 -0400 |
| commit | 7024745a142e261efb6d878389d01a06673b655c (patch) | |
| tree | 0f89b8309d1d854571152c94276c523bfa096d24 /lib/sqlalchemy/sql/__init__.py | |
| parent | d57e5edbcdf915168c613cdd6da0bd7bea877fa4 (diff) | |
| download | sqlalchemy-7024745a142e261efb6d878389d01a06673b655c.tar.gz | |
- 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
Diffstat (limited to 'lib/sqlalchemy/sql/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/sql/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/__init__.py b/lib/sqlalchemy/sql/__init__.py index e8b70061d..fa2cf2399 100644 --- a/lib/sqlalchemy/sql/__init__.py +++ b/lib/sqlalchemy/sql/__init__.py @@ -21,6 +21,8 @@ from .expression import ( Update, alias, and_, + any_, + all_, asc, between, bindparam, |
