rdblue commented on code in PR #5922:
URL: https://github.com/apache/iceberg/pull/5922#discussion_r996004621
##########
api/src/main/java/org/apache/iceberg/Table.java:
##########
@@ -48,6 +48,17 @@ default String name() {
*/
TableScan newScan();
+ /**
+ * Create a new {@link BatchScan batch scan} for this table.
+ *
+ * <p>Once a batch scan is created, it can be refined to project columns and
filter data.
+ *
+ * @return a batch scan for this table
+ */
+ default BatchScan newBatchScan() {
Review Comment:
I think `BatchScan` makes sense, although I do see the point that "batch"
isn't really the opposite of "incremental". `TableScan` works the best, but
that's already taken. I don't really care for `SnapshotScan` because that's too
specific in a way that we don't really need to state (isn't it almost always a
snapshot that gets scanned?).
I'm not sure what a better name would be, so I'd go with `BatchScan`.
--
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]