Skip to content

Commit fb70a98

Browse files
author
shouzhi
committed
return TruthValue::YES_NO_NULL if dictionary entry matches any literal in the IN list
1 parent 736cd5d commit fb70a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c++/src/sargs/SargsApplier.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ namespace orc {
236236
for (const auto& literalView : literalViews) {
237237
if (dictEntry == literalView) {
238238
// Found a match - stripe might contain matching rows
239-
return TruthValue::YES;
239+
return TruthValue::YES_NO_NULL;
240240
}
241241
}
242242
}

0 commit comments

Comments
 (0)