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
SELECT*FROM foo WHERE bar_id IN (SELECT id FROM bar) LIMIT0,30
The paginator will try to find the count by running SELECT COUNT(*) AS count FROM bar). Note the trailing closing parenthesis and the wrong table. This result in the pagination no longer works due to SQL syntax error.
The text was updated successfully, but these errors were encountered:
Consider this query:
The paginator will try to find the count by running
SELECT COUNT(*) AS count FROM bar)
. Note the trailing closing parenthesis and the wrong table. This result in the pagination no longer works due to SQL syntax error.The text was updated successfully, but these errors were encountered: