Skip to content

Commit

Permalink
fix regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
seawinde committed Nov 26, 2024
1 parent 046db6b commit 4973cdf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,4 +316,10 @@ a 4 2 a,a 4.0 yy 2 1
c 3 6 c,c,c 5.333333333333333 mi 3 2

-- !query28_0_before --
1 2023-12-09 1 yy 2 2 2 4 3 \N 2 3 \N \N 8 8 1
1 2023-12-09 1 yy 2 2 2 4 3 \N 2 3 1 2 8 8 1

-- !query28_0_after --
1 2023-12-09 1 yy 2 2 2 4 3 \N 2 3 \N \N 8 8 1
1 2023-12-09 1 yy 2 2 2 4 3 \N 2 3 1 2 8 8 1

Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ suite("aggregate_without_roll_up") {
lineitem
where
l_orderkey is null
or l_orderkey <> 1
or l_orderkey <> 8
) lineitem on l_orderkey = o_orderkey
inner join (
select
Expand All @@ -1415,10 +1415,9 @@ suite("aggregate_without_roll_up") {
from
partsupp
) partsupp on ps_partkey = o_orderkey
and ps_suppkey = o_custkey
where
l_orderkey is null
or l_orderkey <> 1
or l_orderkey <> 8
group by
1,
2,
Expand Down Expand Up @@ -1478,7 +1477,7 @@ suite("aggregate_without_roll_up") {
lineitem
where
l_orderkey is null
or l_orderkey <> 1
or l_orderkey <> 8
) lineitem on l_orderkey = o_orderkey
inner join (
select
Expand All @@ -1488,10 +1487,9 @@ suite("aggregate_without_roll_up") {
from
partsupp
) partsupp on ps_partkey = o_orderkey
and ps_suppkey = o_custkey
where
l_orderkey is null
or l_orderkey <> 1
or l_orderkey <> 8
group by
1,
2,
Expand All @@ -1509,7 +1507,7 @@ suite("aggregate_without_roll_up") {
14;
"""
order_qt_query28_0_before "${query28_0}"
async_mv_rewrite_success_without_check_chosen(db, mv28_0, query28_0, "mv28_0")
async_mv_rewrite_success(db, mv28_0, query28_0, "mv28_0")
order_qt_query28_0_after "${query28_0}"
sql """ DROP MATERIALIZED VIEW IF EXISTS mv28_0"""

Expand Down

0 comments on commit 4973cdf

Please sign in to comment.