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
When executing a query with both where and order by, the results aren't ordered. This is due because method Table.where is used, and that method doesn't allow sort arguments.
To fix it, method Table.get_where_list should be used.
The text was updated successfully, but these errors were encountered:
When executing a query with both
where
andorder by
, the results aren't ordered. This is due because methodTable.where
is used, and that method doesn't allow sort arguments.To fix it, method
Table.get_where_list
should be used.The text was updated successfully, but these errors were encountered: