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



##########
File path: spark/src/main/java/org/apache/iceberg/spark/source/Reader.java
##########
@@ -87,14 +93,17 @@
   private List<Expression> filterExpressions = null;
   private Filter[] pushedFilters = NO_FILTERS;
   private final boolean localityPreferred;
+  private final int batchSize;
 
   // lazy variables
   private Schema schema = null;
   private StructType type = null; // cached because Spark accesses it multiple 
times
   private List<CombinedScanTask> tasks = null; // lazy cache of tasks
+  private Boolean enableBatchRead = null; // cache variable for enabling 
batched reads
 
-  Reader(Table table, Broadcast<FileIO> io, Broadcast<EncryptionManager> 
encryptionManager,
-         boolean caseSensitive, DataSourceOptions options) {
+  Reader(
+      Table table, Broadcast<FileIO> io, Broadcast<EncryptionManager> 
encryptionManager,
+      boolean caseSensitive, DataSourceOptions options) {

Review comment:
       I don't think this needed to be reformatted. Can you revert this change?




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