rdblue commented on a change in pull request #1353:
URL: https://github.com/apache/iceberg/pull/1353#discussion_r482616265



##########
File path: core/src/main/java/org/apache/iceberg/BaseTableScan.java
##########
@@ -301,6 +303,9 @@ private Schema lazyColumnProjection() {
       requiredFieldIds.addAll(selectedIds);
 
       return TypeUtil.select(table.schema(), requiredFieldIds);
+    } else if (context.projectedSchema() != null) {
+
+      return context.projectedSchema();

Review comment:
       Nit: I find this more readable if the blank line is before the `else` to 
distinguish between the previous block and the else case.




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

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