ludlows commented on PR #11439:
URL: https://github.com/apache/iceberg/pull/11439#issuecomment-2509767926

   @huaxingao thanks for the comment. 
   but i don't think the problem will be raised since the bug has been fixed by 
this PR. 
   please check the test code belove:
   ```java
   @TestTemplate
     public void testFilterCaseSensitivityAfterChange() {
       createTable();
       insertData(10);
       sql("set spark.sql.caseSensitive=false");
       assertEquals(
           "Should have done nothing but passed the schema validation, since no 
files are present",
           ImmutableList.of(row(0, 0, 0L, 0)),
           sql(
               "CALL %s.system.rewrite_data_files(table=>'%s', where=>'C1 > 
90000000')",
               catalogName, tableIdent));
     }
   ```
   the test case above has passed .
   


-- 
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

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