Skip to content

Commit

Permalink
fix: correctly set ExecTermArrayVariableInField bitset result (#37111)
Browse files Browse the repository at this point in the history
issue: #37110

Signed-off-by: chasingegg <[email protected]>
  • Loading branch information
chasingegg authored Oct 25, 2024
1 parent bf956a3 commit ad2df90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/core/src/exec/expression/TermExpr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ PhyTermFilterExpr::ExecTermArrayVariableInField() {
res[i] = valid_res[i] = false;
continue;
}
executor(i);
res[i] = executor(i);
}
};

Expand Down

0 comments on commit ad2df90

Please sign in to comment.