Skip to content

Commit

Permalink
test: re-enable merge join test with forced collisions
Browse files Browse the repository at this point in the history
  • Loading branch information
korowa committed Sep 1, 2024
1 parent 8746e07 commit 056a06d
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions datafusion/sqllogictest/test_files/sort_merge_join.slt
Original file line number Diff line number Diff line change
Expand Up @@ -233,18 +233,16 @@ SELECT * FROM t1 FULL JOIN t2 ON t1_id = t2_id
44 d 4 44 x 3
NULL NULL NULL 55 w 3

# FIXME(#TODO) fails with feature `force_hash_collisions`
# https://github.com/apache/datafusion/issues/11659
# equijoin_full_and_condition_from_both
# query ITIITI rowsort
# SELECT * FROM t1 FULL JOIN t2 ON t1_id = t2_id AND t2_int <= t1_int
# ----
# 11 a 1 NULL NULL NULL
# 22 b 2 22 y 1
# 33 c 3 NULL NULL NULL
# 44 d 4 44 x 3
# NULL NULL NULL 11 z 3
# NULL NULL NULL 55 w 3
query ITIITI rowsort
SELECT * FROM t1 FULL JOIN t2 ON t1_id = t2_id AND t2_int <= t1_int
----
11 a 1 NULL NULL NULL
22 b 2 22 y 1
33 c 3 NULL NULL NULL
44 d 4 44 x 3
NULL NULL NULL 11 z 3
NULL NULL NULL 55 w 3

statement ok
DROP TABLE t1;
Expand Down

0 comments on commit 056a06d

Please sign in to comment.