We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb6c0b commit 9b9a303Copy full SHA for 9b9a303
internal/core/src/exec/expression/ExprTest.cpp
@@ -1808,7 +1808,7 @@ TEST_P(ExprTest, TestUnaryRangeJsonNullable) {
1808
case OpType::NotEqual: {
1809
f = [&](int64_t value, bool valid) {
1810
if (!valid) {
1811
- return false;
+ return true;
1812
}
1813
return value != testcase.val;
1814
};
@@ -1938,7 +1938,7 @@ TEST_P(ExprTest, TestUnaryRangeJsonNullable) {
1938
for (const auto& testcase : array_cases) {
1939
auto check = [&](OpType op, bool valid) {
1940
1941
+ return op == OpType::NotEqual ? true : false;
1942
1943
if (testcase.nested_path[0] == "array" && op == OpType::Equal) {
1944
return true;
0 commit comments