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
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Attempting to edit a pool in the latest git commit ( 81b3ce1 ) results in the error "Pool not found."
This seems to be because of a missing GROUP BY clause in the SQL query starting on line 96 in pool.inc.php, which throws a MySQL error. Adding GROUP BY wp.worker_id after the WHERE clause appears to fix this.
The text was updated successfully, but these errors were encountered:
@wyze, this issue is specific to some versions of MySQL and not others. Newer versions seem to infer the GROUP BY clause, while older versions require it explicitly.
Why not just add this in there then? It won't hurt newer versions of MySQL and will fix older versions. Wouldn't take a performance hit and a very small and simple change to the code.
Attempting to edit a pool in the latest git commit ( 81b3ce1 ) results in the error "Pool not found."
This seems to be because of a missing
GROUP BY
clause in the SQL query starting on line 96 in pool.inc.php, which throws a MySQL error. AddingGROUP BY wp.worker_id
after theWHERE
clause appears to fix this.The text was updated successfully, but these errors were encountered: