singhpk234 commented on code in PR #14882:
URL: https://github.com/apache/iceberg/pull/14882#discussion_r2790375396


##########
core/src/main/java/org/apache/iceberg/rest/CatalogHandlers.java:
##########
@@ -775,18 +776,20 @@ static void clearPlanningState() {
    *
    * @param scan the scan to configure
    * @param request the plan table scan request containing filters and 
projections
+   * @param schema the table schema to use for type-aware filter 
deserialization
    * @param <T> the specific scan type (TableScan, IncrementalAppendScan, etc.)
    * @return the configured scan with filters and projections applied
    */
   private static <T extends Scan<T, FileScanTask, ?>> T configureScan(
-      T scan, PlanTableScanRequest request) {
+      T scan, PlanTableScanRequest request, Schema schema) {

Review Comment:
   you mean use scan.schema() ?  because configured scan post select would 
cause issue if I have filter on column not being projected ? I think we can do 
that, let me refactor 



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to