luoyuxia commented on PR #2367:
URL: https://github.com/apache/fluss/pull/2367#issuecomment-3822285668

   @pithecuse527 I try to push a commit to your branch to fix ci. But 
permission denied.
   Please modify the following code in 
FlinkUnionReadLogTableITCase#testReadLogTableFullType 
   from 
   ```
    // check if the plan contains partition filter
               // check filter push down
               assertThat(plan)
                       .contains("TableSourceScan(")
                       .contains("LogicalFilter(condition=[=($16, _UTF-16LE'" + 
partition + "'")
                       .contains("filter=[=(p, _UTF-16LE'" + partition + "'");
   
               List<Row> expectedFiltered =
                       writtenRows.stream()
                               .filter(r -> partition.equals(r.getField(16)))
                               .collect(Collectors.toList());
   ```
   
   to
    
   ```
    // check if the plan contains partition filter
               // check filter push down
               assertThat(plan)
                       .contains("TableSourceScan(")
                       .contains("LogicalFilter(condition=[=($17, _UTF-16LE'" + 
partition + "'")
                       .contains("filter=[=(p, _UTF-16LE'" + partition + "'");
   
               List<Row> expectedFiltered =
                       writtenRows.stream()
                               .filter(r -> partition.equals(r.getField(17)))
                               .collect(Collectors.toList());
   ```


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

Reply via email to