Skip to content

Commit

Permalink
logictest: Ignore test flake in disjunction_in_join
Browse files Browse the repository at this point in the history
This commit comments out a flaky test which will be fixed by cockroachdb#74554.

Release note: none
  • Loading branch information
Mark Sirek committed Apr 8, 2022
1 parent 0a4cd77 commit 68b99cf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/sql/logictest/testdata/logic_test/disjunction_in_join
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,11 @@ SELECT * FROM a WHERE (a1, a2) IN (SELECT c1, d1 FROM c, d WHERE c3 = d3 or c3 =
----
0 0 0 0

query IIII rowsort
SELECT * FROM a WHERE (a1, a2) IN (SELECT c1, d1 FROM c, d WHERE c3 = d3 or c2 = d2 EXCEPT ALL
SELECT c1, d1 FROM c, d WHERE c3 = d3 or c2 = d2)
----
# TODO: Enable this test once issue #74554 is fixed.
# query IIII rowsort
# SELECT * FROM a WHERE (a1, a2) IN (SELECT c1, d1 FROM c, d WHERE c3 = d3 or c2 = d2 EXCEPT ALL
# SELECT c1, d1 FROM c, d WHERE c3 = d3 or c2 = d2)
# ----

query IIII rowsort
SELECT * FROM a WHERE (a1, a2) IN (SELECT c1, d1 FROM c, d WHERE c1 IS NULL OR c1 = d1)
Expand Down

0 comments on commit 68b99cf

Please sign in to comment.