does not raise an exception.
* Do not get an object to delete it. If you can `delete() <http://docs.sqlalchemy.org/en/rel_1_0/orm/query.html#sqlalchemy.orm.query.Query.delete>`_
on the query object. Read the warnings for more details about in-python cascades.
-* ...
+* For PostgreSQL if you're using GROUP BY everything in the SELECT list must be
+ an aggregate SUM(...), COUNT(...), etc or used in the GROUP BY.
+
+ The incorrect variant:
+
+ .. code:: python
+
+ q = query(Object.id, Object.name,
+ func.count(Object.number)).group_by(Object.name)
+
+ The correct variant:
+
+ .. code:: python
+
+ q = query(Object.id, Object.name,
+ func.count(Object.number)).group_by(Object.id, Object.name)
System development
~~~~~~~~~~~~~~~~~~