hengfeiyang commented on issue #8436: URL: https://github.com/apache/arrow-datafusion/issues/8436#issuecomment-1844085013
@alamb @my-vegetable-has-exploded I found if there are more than three values the bloomfilter also can't work. This works ```sql SELECT * FROM tbl where (trace_id='3c7dbf90d1a66e3faffa344519c3bac3' OR trace_id='1' OR trace_id='2') LIMIT 150; ``` This doesn't works ```sql SELECT * FROM tbl where (trace_id='3c7dbf90d1a66e3faffa344519c3bac3' OR trace_id='1' OR trace_id='2' OR trace_id='3') LIMIT 150; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
