Skip to content

Commit

Permalink
fix flap in column_query test (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-v-kush authored Aug 5, 2024
1 parent 39e8604 commit 47354c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion columnar/src/test/regress/expected/columnar_query.out
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ SELECT columnar.alter_columnar_table_set('t', chunk_group_row_limit => '11000');

INSERT INTO t SELECT a, md5(b::text) FROM generate_series(0,50000) AS t1(a)
JOIN LATERAL generate_series(1, 10) AS t2(b) ON (true);
SELECT b, count(*) FROM t WHERE a > 50 AND b <> '' GROUP BY b;
SELECT b, count(*) FROM t WHERE a > 50 AND b <> '' GROUP BY b ORDER BY b;
b | count
----------------------------------+-------
1679091c5a880faf6fb5e6087eb1b2dc | 49950
Expand Down
2 changes: 1 addition & 1 deletion columnar/src/test/regress/sql/columnar_query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,6 @@ SELECT columnar.alter_columnar_table_set('t', chunk_group_row_limit => '11000');
INSERT INTO t SELECT a, md5(b::text) FROM generate_series(0,50000) AS t1(a)
JOIN LATERAL generate_series(1, 10) AS t2(b) ON (true);

SELECT b, count(*) FROM t WHERE a > 50 AND b <> '' GROUP BY b;
SELECT b, count(*) FROM t WHERE a > 50 AND b <> '' GROUP BY b ORDER BY b;

DROP TABLE t;

0 comments on commit 47354c2

Please sign in to comment.