Skip to content

Commit

Permalink
Cleanup testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
kryonix committed Aug 13, 2024
1 parent 7b20670 commit e1bbc12
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions test/sql/cte/test_fib_complex.test_slow
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ FROM (SELECT i FROM generate_series(2,3) AS _(i)) AS "input"("n"),
FROM "loop"
WHERE "loop".".mark" > "input".".mark"
AND ("loop".".thread.this" IS NOT DISTINCT FROM "input".".thread.this" OR
"loop".".thread.parent" IS NOT DISTINCT FROM "input".".thread.this")) -- Here is the error.
"loop".".thread.parent" IS NOT DISTINCT FROM "input".".thread.this"))
AS ".done",
"input"."n"
FROM ((SELECT "input".".iteration",
Expand Down Expand Up @@ -150,12 +150,6 @@ FROM (SELECT i FROM generate_series(2,3) AS _(i)) AS "input"("n"),
"key".".label.parent",
CAST((NULL) AS int) AS "fib.n",
CAST(("aggregate"."n") AS int)
-- (SELECT SUM(CAST(("input"."n") AS INT))
-- FROM "fib.wait.1.decide" AS "input"
-- WHERE "input".".done"
-- AND "key".".iteration" IS NOT DISTINCT FROM "input".".iteration"
-- AND "key".".thread.this" IS NOT DISTINCT FROM "input".".thread.this"
-- AND "key".".label.parent" IS NOT DISTINCT FROM "input".".label.parent") :: INT
FROM (SELECT MIN("key".".mark") AS ".mark",
"key".".iteration",
"key".".thread.this",
Expand Down

0 comments on commit e1bbc12

Please sign in to comment.