Skip to content

Commit

Permalink
Remove obsolete workaround
Browse files Browse the repository at this point in the history
The underlying bug was fixed in version 338.
  • Loading branch information
martint committed Aug 7, 2022
1 parent 06b2fdb commit 3816986
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void testCrossJoinEliminationWithOuterJoin()
public void testJoinOnNan()
{
assertThat(assertions.query(
"WITH t(x) AS (VALUES if(rand() > 0, nan())) " + // TODO: remove if(rand() > 0, ...) once https://github.com/trinodb/trino/issues/4119 is fixed
"WITH t(x) AS (VALUES nan()) " +
"SELECT * FROM t t1 JOIN t t2 ON NOT t1.x < t2.x"))
.matches("VALUES (nan(), nan())");
}
Expand Down

0 comments on commit 3816986

Please sign in to comment.