Fix bug for expression boundary (#7339)

Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
This commit is contained in:
cai.zhang 2021-08-28 10:13:57 +08:00 committed by GitHub
parent c333af0dcf
commit 880aa540e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,6 +95,8 @@ ExtractBinaryRangeExprImpl(FieldOffset field_offset, DataType data_type, const p
};
setValue(result->lower_value_, expr_proto.lower_value());
setValue(result->upper_value_, expr_proto.upper_value());
result->lower_inclusive_ = expr_proto.lower_inclusive();
result->upper_inclusive_ = expr_proto.upper_inclusive();
return result;
}