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
# DONE: 4.1 Triage: failing when running against 4.0.559.6 (result mismatch)
47
45
- query: select count(col1) from t1
46
+
# FORCE_CONTINUATIONS does not work with versions before 4.1.4.0 due to limits not enforced "ON EMPTY" prior to https://github.com/FoundationDB/fdb-record-layer/pull/3092
47
+
# Can remove once we no longer want to test versions prior to 4.1.4.0
48
48
- explain: "AISCAN(MV3 <,> BY_GROUP -> [_0: VALUE:[0]]) | MAP (_ AS _0) | ON EMPTY NULL | MAP (coalesce_long(_._0._0, promote(0l AS LONG)) AS _0)"
49
49
- initialVersionLessThan: 4.0.561.0
50
50
- result: []
@@ -60,17 +60,15 @@ test_block:
60
60
-
61
61
- query: select count(*) from t2
62
62
- explain: "ISCAN(MV5 <,>) | MAP (_ AS _0) | AGG (count_star(*) AS _0) | ON EMPTY NULL | MAP (coalesce_long(_._0._0, promote(0l AS LONG)) AS _0)"
63
-
# 4.1 Triage: failing when running against 4.0.559.6 (Received continuation shouldn't be at beginning)
64
-
# - result: [{0}]
63
+
- result: [{0}]
65
64
-
66
65
- query: select count(*) from t2 group by col2
67
66
- explain: "ISCAN(MV5 <,>) | MAP (_ AS _0) | AGG (count_star(*) AS _0) GROUP BY (_._0.COL2 AS _0) | MAP (_._1._0 AS _0)"
68
67
- result: []
69
68
-
70
69
- query: select count(col1) from t2
71
70
- explain: "ISCAN(MV5 <,>) | MAP (_ AS _0) | AGG (count(_._0.COL1) AS _0) | ON EMPTY NULL | MAP (coalesce_long(_._0._0, promote(0l AS LONG)) AS _0)"
72
-
# 4.1 Triage: failing when running against 4.0.559.6 (Received continuation shouldn't be at beginning)
73
-
# - result: [{0}]
71
+
- result: [{0}]
74
72
-
75
73
- query: select count(col1) from t2 group by col2
76
74
- explain: "ISCAN(MV5 <,>) | MAP (_ AS _0) | AGG (count(_._0.COL1) AS _0) GROUP BY (_._0.COL2 AS _0) | MAP (_._1._0 AS _0)"
0 commit comments