You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ModelQuery#getSelectClause adds the id column to its select clause (code):
sqlClause.append("id, ");
However, when querying with a group by clause, this is incompatible with the new ONLY_FULL_GROUP_BY mode introduced in MySql 5.7.5 (reference):
Reject queries for which the select list, HAVING condition, or ORDER BY list refer to nonaggregated columns that are neither named in the GROUP BY clause nor are functionally dependent on (uniquely determined by) GROUP BY columns.
As of MySQL 5.7.5, the default SQL mode includes ONLY_FULL_GROUP_BY. (Before 5.7.5, MySQL does not detect functional dependency and ONLY_FULL_GROUP_BY is not enabled by default.
The text was updated successfully, but these errors were encountered:
This test is ordered by users.id, but it is not an aggregrated column, which is not compatible with the new only_full_group_by mode introduced into mysql 5.7.5.
Relates to LiveRamp#204
ModelQuery#getSelectClause
adds theid
column to its select clause (code):However, when querying with a group by clause, this is incompatible with the new
ONLY_FULL_GROUP_BY
mode introduced in MySql 5.7.5 (reference):The text was updated successfully, but these errors were encountered: