You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by si...@apache.org on 2022/09/01 23:12:36 UTC

[pinot] branch master updated (4ab1076c29 -> 8e17e632ce)

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

siddteotia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


    from 4ab1076c29 Add Support for Cast Function on MV Columns (#9296)
     add 8e17e632ce [multistage] support HAVING clause (#9274)

No new revisions were added by this update.

Summary of changes:
 .../pinot/query/QueryEnvironmentTestBase.java      |   3 +
 .../runtime/executor/WorkerQueryExecutor.java      |   5 +-
 .../query/runtime/operator/FilterOperator.java     |  91 ++++++++++++
 .../query/runtime/operator/TransformOperator.java  |  93 +-----------
 .../runtime/operator/operands/FilterOperand.java   | 160 +++++++++++++++++++++
 .../runtime/operator/operands/FunctionOperand.java |  74 ++++++++++
 .../runtime/operator/operands/LiteralOperand.java  |  17 ++-
 .../operator/operands/ReferenceOperand.java        |  25 ++--
 .../operator/operands/TransformOperand.java        |  50 +++++++
 .../pinot/query/runtime/QueryRunnerTest.java       |  10 +-
 10 files changed, 412 insertions(+), 116 deletions(-)
 create mode 100644 pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/FilterOperator.java
 create mode 100644 pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/operands/FilterOperand.java
 create mode 100644 pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/operands/FunctionOperand.java
 copy pinot-plugins/pinot-metrics/pinot-yammer/src/main/java/org/apache/pinot/plugin/metrics/yammer/YammerMetric.java => pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/operands/LiteralOperand.java (69%)
 copy pinot-query-planner/src/main/java/org/apache/pinot/query/planner/stage/FilterNode.java => pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/operands/ReferenceOperand.java (62%)
 create mode 100644 pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/operands/TransformOperand.java


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