Skip to content

Commit 8bab054

Browse files
committed
Fix regression tests on main
I merged an old branch and the output of a newly added test was not updated. Fix it.
1 parent e877b4c commit 8bab054

4 files changed

Lines changed: 16 additions & 8 deletions

File tree

test/expected/agg_bookends-15.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,12 +505,14 @@ INSERT INTO btest_numeric VALUES('2020-01-20T09:00:43', 30.5);
505505
:PREFIX SELECT first(temp, time) FROM ONLY btest;
506506
--- QUERY PLAN ---
507507
Aggregate (actual rows=1.00 loops=1)
508-
-> Seq Scan on btest (actual rows=0.00 loops=1)
508+
-> Result (actual rows=0.00 loops=1)
509+
One-Time Filter: false
509510

510511
:PREFIX SELECT last(temp, time) FROM ONLY btest;
511512
--- QUERY PLAN ---
512513
Aggregate (actual rows=1.00 loops=1)
513-
-> Seq Scan on btest (actual rows=0.00 loops=1)
514+
-> Result (actual rows=0.00 loops=1)
515+
One-Time Filter: false
514516

515517
-- test constants
516518
:PREFIX SELECT first(100, 100) FROM btest;

test/expected/agg_bookends-16.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,12 +505,14 @@ INSERT INTO btest_numeric VALUES('2020-01-20T09:00:43', 30.5);
505505
:PREFIX SELECT first(temp, time) FROM ONLY btest;
506506
--- QUERY PLAN ---
507507
Aggregate (actual rows=1.00 loops=1)
508-
-> Seq Scan on btest (actual rows=0.00 loops=1)
508+
-> Result (actual rows=0.00 loops=1)
509+
One-Time Filter: false
509510

510511
:PREFIX SELECT last(temp, time) FROM ONLY btest;
511512
--- QUERY PLAN ---
512513
Aggregate (actual rows=1.00 loops=1)
513-
-> Seq Scan on btest (actual rows=0.00 loops=1)
514+
-> Result (actual rows=0.00 loops=1)
515+
One-Time Filter: false
514516

515517
-- test constants
516518
:PREFIX SELECT first(100, 100) FROM btest;

test/expected/agg_bookends-17.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,12 +465,14 @@ INSERT INTO btest_numeric VALUES('2020-01-20T09:00:43', 30.5);
465465
:PREFIX SELECT first(temp, time) FROM ONLY btest;
466466
--- QUERY PLAN ---
467467
Aggregate (actual rows=1.00 loops=1)
468-
-> Seq Scan on btest (actual rows=0.00 loops=1)
468+
-> Result (actual rows=0.00 loops=1)
469+
One-Time Filter: false
469470

470471
:PREFIX SELECT last(temp, time) FROM ONLY btest;
471472
--- QUERY PLAN ---
472473
Aggregate (actual rows=1.00 loops=1)
473-
-> Seq Scan on btest (actual rows=0.00 loops=1)
474+
-> Result (actual rows=0.00 loops=1)
475+
One-Time Filter: false
474476

475477
-- test constants
476478
:PREFIX SELECT first(100, 100) FROM btest;

test/expected/agg_bookends-18.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,12 +465,14 @@ INSERT INTO btest_numeric VALUES('2020-01-20T09:00:43', 30.5);
465465
:PREFIX SELECT first(temp, time) FROM ONLY btest;
466466
--- QUERY PLAN ---
467467
Aggregate (actual rows=1.00 loops=1)
468-
-> Seq Scan on btest (actual rows=0.00 loops=1)
468+
-> Result (actual rows=0.00 loops=1)
469+
One-Time Filter: false
469470

470471
:PREFIX SELECT last(temp, time) FROM ONLY btest;
471472
--- QUERY PLAN ---
472473
Aggregate (actual rows=1.00 loops=1)
473-
-> Seq Scan on btest (actual rows=0.00 loops=1)
474+
-> Result (actual rows=0.00 loops=1)
475+
One-Time Filter: false
474476

475477
-- test constants
476478
:PREFIX SELECT first(100, 100) FROM btest;

0 commit comments

Comments
 (0)