Skip to content

Commit 13e64dd

Browse files
xinyi-xsJaylinYu
authored andcommitted
* FIX [parquet] fixed parquet history query.
Signed-off-by: xinyi-xs <lihj@emqx.io>
1 parent bc59faa commit 13e64dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/supplemental/nanolib/parquet/parquet.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ get_keys_indexes_fuzing(
957957
&repetition_level, &value, &values_read);
958958
if (1 == rows_read && 1 == values_read) {
959959
log_trace("read value: %lu", value);
960-
if (((uint64_t) value) >= start_key) {
960+
if (((uint64_t) value) >= start_key && ((uint64_t) value) <= end_key) {
961961
index_vector.push_back(index++);
962962
ts.push_back(value);
963963
found = true;

0 commit comments

Comments
 (0)