]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- rework the previous "order by" system in terms of the new one,
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Sep 2014 20:31:11 +0000 (16:31 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Sep 2014 20:31:11 +0000 (16:31 -0400)
commit7904ebc62e0a75d1ea31e1a4ae67654c7681a737
treea0e162ea74d3bb25390643b7db84bb288ca4e841
parente4996d4f5432657639798c1b286ee811a36e2a10
- rework the previous "order by" system in terms of the new one,
unify everything.
- create a new layer of separation between the "from order bys" and "column order bys",
so that an OVER doesn't ORDER BY a label in the same columns clause
- identify another issue with polymorphic for ref #3148, match on label
keys rather than the objects
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/selectable.py
lib/sqlalchemy/sql/util.py
test/orm/test_query.py
test/sql/test_compiler.py