clean up order by/group by code

Issue #69 resolved
Mike Bayer repo owner created an issue

right now order by and group by are attributes on a SelectBaseMixin object and have some contorted logic going on, which makes it hard to access and modify those clauses. it also currently places knowledge of the "ORDER BY" and "GROUP BY" strings in the sql module. make orderby/groupby regular attributes on SelectBaseMixin, enhance ansicompiler to handle them explicitly along with the correct keyword, and fix all code dependencies (i.e. mapper.py, properties.py) from the old way to the new way.

Comments (1)

  1. Log in to comment