]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Added NULLS FIRST and NULLS LAST support.
authorMichael Trier <mtrier@gmail.com>
Mon, 20 Dec 2010 00:25:33 +0000 (19:25 -0500)
committerMichael Trier <mtrier@gmail.com>
Mon, 20 Dec 2010 00:25:33 +0000 (19:25 -0500)
commit15ea17d7f882fec3f892a22612da4827780c8dae
tree95470fa103945fecc63ce28045be46e1e5f61c1d
parent0e8112d32290382b1b38f84bb254543a533ae995
Added NULLS FIRST and NULLS LAST support.

It's implemented as an extension to the asc() and desc() operators, called
nullsfirst() and nullslast().  [ticket:723]
CHANGES
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/operators.py
test/lib/requires.py
test/sql/test_compiler.py
test/sql/test_query.py