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
In [1]: con = ibis.postgres.connect(database='ibis_testing')
In [2]: t = con.table('batting')
In [3]: print(t.sort_by(ibis.desc(t.playerID)).count().compile().compile())
SELECT count(%(count_1)s) AS count
FROM batting AS t0 ORDER BY t0."playerID" DESC
This is incorrect, because ORDER BY in an aggregation is meaningless without a GROUP BY.
The text was updated successfully, but these errors were encountered:
This is incorrect, because
ORDER BYin an aggregation is meaningless without aGROUP BY.The text was updated successfully, but these errors were encountered: