.. changelog::
:version: 1.1.5
+ .. change:: 3878
+ :tags: bug, sql
+ :tickets: 3878
+
+ Fixed 1.1 regression where "import *" would not work for
+ sqlalchemy.sql.expression, due to mis-spelled "any_" and "all_"
+ functions.
+
.. change:: 3877
:tags: bug, oracle, postgresql
:tickets: 3877
"""
__all__ = [
- 'Alias', 'Any', 'All', 'ClauseElement', 'ColumnCollection', 'ColumnElement',
+ 'Alias', 'any_', 'all_', 'ClauseElement', 'ColumnCollection', 'ColumnElement',
'CompoundSelect', 'Delete', 'FromClause', 'Insert', 'Join', 'Lateral',
'Select',
'Selectable', 'TableClause', 'Update', 'alias', 'and_', 'asc', 'between',