You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by dh...@apache.org on 2021/08/25 13:29:04 UTC

[arrow-datafusion] branch master updated: Fix metric name typo (#943)

This is an automated email from the ASF dual-hosted git repository.

dheres pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 0632440  Fix metric name typo (#943)
0632440 is described below

commit 0632440e07e02701adf8d12cbc8b1715b188039e
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Wed Aug 25 09:28:56 2021 -0400

    Fix metric name typo (#943)
---
 datafusion/src/physical_plan/hash_join.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/src/physical_plan/hash_join.rs b/datafusion/src/physical_plan/hash_join.rs
index 3a0a3f2..e189f94 100644
--- a/datafusion/src/physical_plan/hash_join.rs
+++ b/datafusion/src/physical_plan/hash_join.rs
@@ -142,7 +142,7 @@ impl HashJoinMetrics {
         let input_rows = MetricBuilder::new(metrics).counter("input_rows", partition);
 
         let output_batches =
-            MetricBuilder::new(metrics).counter("output_rows", partition);
+            MetricBuilder::new(metrics).counter("output_batches", partition);
 
         let output_rows = MetricBuilder::new(metrics).output_rows(partition);