You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ja...@apache.org on 2020/09/30 01:41:01 UTC

[incubator-pinot] branch master updated: Add toString() to AggregationFunctionColumnPair (#6077)

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

jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d79e0a  Add toString() to AggregationFunctionColumnPair (#6077)
8d79e0a is described below

commit 8d79e0a49dcb9c3f1d07618946d38e82f2e88b50
Author: Xiaotian (Jackie) Jiang <17...@users.noreply.github.com>
AuthorDate: Tue Sep 29 18:40:50 2020 -0700

    Add toString() to AggregationFunctionColumnPair (#6077)
    
    Solve the issue where `AggregationFunctionColumnPair` is not properly logged in `StarTreeV2BuilderConfig`
---
 .../apache/pinot/core/startree/v2/AggregationFunctionColumnPair.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/pinot-core/src/main/java/org/apache/pinot/core/startree/v2/AggregationFunctionColumnPair.java b/pinot-core/src/main/java/org/apache/pinot/core/startree/v2/AggregationFunctionColumnPair.java
index a1c000d..5224c6e 100644
--- a/pinot-core/src/main/java/org/apache/pinot/core/startree/v2/AggregationFunctionColumnPair.java
+++ b/pinot-core/src/main/java/org/apache/pinot/core/startree/v2/AggregationFunctionColumnPair.java
@@ -81,4 +81,9 @@ public class AggregationFunctionColumnPair {
     }
     return false;
   }
+
+  @Override
+  public String toString() {
+    return toColumnName();
+  }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org