ebyhr opened a new issue, #12458:
URL: https://github.com/apache/iceberg/issues/12458

   ### Apache Iceberg version
   
   1.8.1 (latest release)
   
   ### Query engine
   
   Spark
   
   ### Please describe the bug 🐞
   
   Trino
   ```sql
   CREATE TABLE test (testinteger INTEGER, testlong BIGINT, teststring VARCHAR, 
testdouble DOUBLE, testfloat REAL)
   WITH (
   format = 'PARQUET',
   parquet_bloom_filter_columns = ARRAY['testinteger', 'testlong', 
'teststring', 'testdouble', 'testfloat']
   );
   
   INSERT INTO test
   SELECT testinteger, testlong, teststring, testdouble, testfloat FROM (VALUES
   (-999999, -999999, 'aaaaaaaaaaa', DOUBLE '-9999999999.99', REAL 
'-9999999.9999')
   , (3, 30, 'fdsvxxbv33cb', DOUBLE '97662.2', REAL '98862.2')
   , (5324, 2466, 'refgfdfrexx', DOUBLE '8796.1', REAL '-65496.1')
   , (999999, 9999999999999, 'zzzzzzzzzzz', DOUBLE '9999999999.99', REAL 
'-9999999.9999')
   , (9444, 4132455, 'ff34322vxff', DOUBLE '32137758.7892', REAL 
'9978.129887')) AS DATA(testinteger, testlong, teststring, testdouble, 
testfloat);
   ```
   
   Spark 
   ```sql
   SELECT COUNT(*) FROM default.test WHERE testinteger IN (9444, -88777, 
6711111);
   ```
   
   * 1.7.0 returns expected 1 
   * 1.8.1 returns unexpected 0
   
   https://apache-iceberg.slack.com/archives/C03LG1D563F/p1741059872177949
   
   ### Willingness to contribute
   
   - [ ] I can contribute a fix for this bug independently
   - [ ] I would be willing to contribute a fix for this bug with guidance from 
the Iceberg community
   - [ ] I cannot contribute a fix for this bug at this time


-- 
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: issues-unsubscr...@iceberg.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to