Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv15994
Modified Files:
DBConnection.py
Log Message:
Removed groupBy for select()
Index: DBConnection.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/DBConnection.py,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** DBConnection.py 24 Oct 2003 19:18:52 -0000 1.54
--- DBConnection.py 12 Nov 2003 17:06:34 -0000 1.55
***************
*** 239,244 ****
return s
- if order and ops.get('groupBy'):
- q = "%s GROUP BY %s" % (q, clauseList(ops['groupBy']))
if order and ops.get('dbOrderBy'):
q = "%s ORDER BY %s" % (q, clauseList(ops['dbOrderBy'], ops.get('reversed', False)))
--- 239,242 ----
|