Skip to content

Commit

Permalink
Forget to update columnar_aggregates expected result (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
japinli authored Apr 30, 2024
1 parent fd84af9 commit d3601b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions columnar/src/test/regress/expected/columnar_aggregates.out
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ DETAIL: Unsupported aggregate argument combination.
-- Vectorized Aggregates accepts only non-const values.
EXPLAIN (verbose, costs off, timing off, summary off) SELECT COUNT(1) FROM t_mixed;
DEBUG: Query can't be vectorized. Falling back to original execution.
DETAIL: Vectorized Aggregates accepts accepts only valid column argument
DETAIL: Vectorized Aggregates accept only valid column argument
QUERY PLAN
--------------------------------------------------------------------------
Aggregate
Expand All @@ -241,7 +241,7 @@ DETAIL: Vectorized aggregate with DISTINCT not supported.
-- Vectorized aggregate doesn't accept function as argument
EXPLAIN (verbose, costs off, timing off, summary off) SELECT SUM(length(b::text)) FROM t_mixed;
DEBUG: Query can't be vectorized. Falling back to original execution.
DETAIL: Vectorized Aggregates accepts accepts only valid column argument
DETAIL: Vectorized Aggregates accept only valid column argument
QUERY PLAN
----------------------------------------------------
Aggregate
Expand Down

0 comments on commit d3601b1

Please sign in to comment.