xx789633 commented on issue #1600:
URL: https://github.com/apache/fluss/issues/1600#issuecomment-3252276860
Currently, a workaround for implementing full scan is like this:
```java
Scan scan =
table.newScan().limit(limit).project(projectedFields);
List<BatchScanner> scanners =
tableBuckets.stream()
.map(scan::createBatchScanner)
.collect(Collectors.toList());
List<InternalRow> scannedRows =
BatchScanUtils.collectLimitedRows(scanners, limit);
```
--
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]