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
Query: "select ship, dense_rank() over (order by ship) as drnk from o where c_id in (1, 2) order by ship",
11668
11675
Expected: []sql.Row{
11669
11676
{nil, uint64(1)},
11670
11677
{"CA", uint64(2)},
@@ -11680,6 +11687,8 @@ select * from t1 except (
11680
11687
},
11681
11688
{
11682
11689
Query: "SELECT * FROM (SELECT c_id AS c_c_id, bill FROM c) sq1, LATERAL (SELECT row_number() OVER () AS rownum FROM o WHERE c_id = c_c_id) sq2 ORDER BY c_c_id, bill, rownum;",
11690
+
// TODO: valid query in Postgres. https://github.com/dolthub/doltgresql/issues/1796
0 commit comments