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 <[email protected]>
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);
 

Reply via email to