The test CqlIntervalOperatorsTest.In.TestInNullBoundaries specifies the following CQL:
5 in Interval[null, null]
and expected output false.
The CQL specification for In, however, says:
For closed interval boundaries, if the interval boundary is null, the result of the boundary comparison is considered true.
Therefore, the result of each boundary comparison in the test CQL is true and the overall result should also be true.
The test CqlIntervalOperatorsTest.In.TestInNullBoundaries specifies the following CQL:
and expected output
false.The CQL specification for In, however, says:
Therefore, the result of each boundary comparison in the test CQL is true and the overall result should also be
true.