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
After upgrading from 2.0.0 to 2.0.1, I get a compilation error.
loadFoo:
SELECT T.*, ifnull(cnt, 0) AS count
FROM t T
LEFT OUTER JOIN (
SELECT foo_id, count(*) AS cnt
FROM i I
GROUP BY foo_id
) ON T.id = foo_id
ORDER BY T.code;