diff options
author | Antti Haapala <antti.haapala@anttipatterns.com> | 2015-01-08 14:32:08 +0200 |
---|---|---|
committer | Antti Haapala <antti.haapala@anttipatterns.com> | 2015-01-08 14:32:08 +0200 |
commit | 1ad2647d2869226fc2f441de4c4e4984806231e0 (patch) | |
tree | bc203c6396bde743affa447d23bf676105da0a69 /lib/sqlalchemy/__init__.py | |
parent | b8a8cdd1ff47b5774662f4c61fe49382b967de02 (diff) | |
download | sqlalchemy-pr/156.tar.gz |
Support for the WITHIN GROUP (ORDER BY) clauses (within_group/WithinGroup).pr/156
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
-rw-r--r-- | lib/sqlalchemy/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index d184e1fbf..62492faad 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -49,6 +49,7 @@ from .sql import ( union, union_all, update, + within_group, ) from .types import ( |