We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edec461 commit 91f0f7bCopy full SHA for 91f0f7b
native/core/src/execution/operators/iceberg_scan.rs
@@ -369,11 +369,7 @@ impl IcebergFileStream {
369
}
370
371
372
- match ready!(self
373
- .metrics
374
- .baseline
375
- .record_poll(current.poll_next_unpin(cx)))
376
- {
+ match ready!(current.poll_next_unpin(cx)) {
377
Some(result) => {
378
// Stop time_scanning_until_data on first batch (idempotent)
379
self.metrics.file_stream.time_scanning_until_data.stop();
@@ -428,7 +424,7 @@ impl Stream for IcebergFileStream {
428
424
self.metrics.file_stream.time_processing.start();
429
425
let result = self.poll_inner(cx);
430
426
self.metrics.file_stream.time_processing.stop();
431
- result
427
+ self.metrics.baseline.record_poll(result)
432
433
434
0 commit comments