Skip to content

Commit

Permalink
fix #7647 Add tests, add order by for test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ольга Сергеева committed Jan 22, 2025
1 parent 19e29a8 commit b90bea9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/regress/sql/columnar_join.sql
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,9 @@ INSERT INTO tbl_cross_columnar VALUES (4, 40), (5, 50), (6, 60);

SELECT h.id AS heap_id, h.val AS heap_val, c.id AS columnar_id, c.val AS columnar_val
FROM tbl_cross_heap h
CROSS JOIN tbl_cross_columnar c;
CROSS JOIN tbl_cross_columnar c
ORDER BY 3,4,1,2;

-- End test case
SET client_min_messages TO warning;
DROP SCHEMA am_columnar_join CASCADE;
DROP SCHEMA am_columnar_join CASCADE;

0 comments on commit b90bea9

Please sign in to comment.