Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions native/core/src/execution/operators/iceberg_scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,7 @@ impl IcebergFileStream {
}
}

match ready!(self
.metrics
.baseline
.record_poll(current.poll_next_unpin(cx)))
{
match ready!(current.poll_next_unpin(cx)) {
Some(result) => {
// Stop time_scanning_until_data on first batch (idempotent)
self.metrics.file_stream.time_scanning_until_data.stop();
Expand Down Expand Up @@ -428,7 +424,7 @@ impl Stream for IcebergFileStream {
self.metrics.file_stream.time_processing.start();
let result = self.poll_inner(cx);
self.metrics.file_stream.time_processing.stop();
result
self.metrics.baseline.record_poll(result)
}
}

Expand Down
Loading