Seen when sorting the view by one of the aggregates and then using pagination. The actual column in the error message depends on the column used for sorting, but here for example we have:
SELECT cec_user_name,COALESCE(cec_user_name, ""),cec_user_id,cep_private,SUM((CASE WHEN (cec.cec_edit_flags & 1) != 0 THEN 1 ELSE 0 END)) AS `articles_added`,COUNT(DISTINCT (CASE WHEN (cec.cec_edit_flags & 1) = 0 THEN CONCAT(cec.cec_wiki,'|',cec.cec_page_id) ELSE NULL END)) AS `articles_edited`,COUNT(*) AS `edit_count`,SUM(cec_bytes_delta) AS `bytes` FROM `ce_event_contributions` `cec` JOIN `ce_participants` `cep` ON ((cec.cec_event_id = cep.cep_event_id) AND (cec.cec_user_id = cep.cep_user_id) AND cep.cep_unregistered_at IS NULL) WHERE cec.cec_event_id = 3112 AND cec.cec_deleted = 0 AND ((cep.cep_private = 0 OR cec.cec_user_id = 47053011)) AND (articles_added > '1' OR (articles_added = '1' AND (cec_user_id > '81237378'))) GROUP BY cec_user_name,COALESCE(cec_user_name, ""),cec_user_id,cep_private ORDER BY articles_added,cec_user_id LIMIT 51