You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[2022-10-29T15:51:31Z ERROR datafusion::physical_plan::file_format::parquet]
Error evaluating page index predicate values Error during planning:
Can not create statistics record batch: Invalid argument error:
Column 'container_min' is declared as non-nullable but contains null values
Seems can not create batch in build_statistics_record_batch will NULL valuse.
Because container col:
container: REQUIRED BINARY L:STRING R:0 D:0
now not support BINARY type which will return a null array now, will add a fallback .
Describe the bug
When I enable page index filtering incorrect answers result
NOTE that page index filtering is not enabled by default (as we are still working on it) so this issue will not likely affect users:
To Reproduce
Expected behavior
Same answer should be produced with and without page index filtering enabled. However, the answers are different
Without page index
15963
rows are producedWITH page filtering,
0
rows are produced 😱Additional context
I found this issue and reproducer while working on the integration test #3976
I suspect @Ted-Jiang is already working on this issue
The text was updated successfully, but these errors were encountered: