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 70f3ab3 commit 56e85e3Copy full SHA for 56e85e3
1 file changed
datafusion/ffi/src/physical_expr/metrics.rs
@@ -430,8 +430,12 @@ impl From<&MetricValue> for FFI_MetricValue {
430
name: SString::from(name.as_ref()),
431
time_ns: time.value() as u64,
432
},
433
- MetricValue::StartTimestamp(ts) => Self::StartTimestampNsUTC(timestamp_to_ffi(ts)),
434
- MetricValue::EndTimestamp(ts) => Self::EndTimestampNsUTC(timestamp_to_ffi(ts)),
+ MetricValue::StartTimestamp(ts) => {
+ Self::StartTimestampNsUTC(timestamp_to_ffi(ts))
435
+ }
436
+ MetricValue::EndTimestamp(ts) => {
437
+ Self::EndTimestampNsUTC(timestamp_to_ffi(ts))
438
439
MetricValue::PruningMetrics {
440
name,
441
pruning_metrics,
0 commit comments