This is an automated email from the ASF dual-hosted git repository. saurabhd336 pushed a change to branch release-1.0-rc in repository https://gitbox.apache.org/repos/asf/pinot.git
omit 568e8dffd7 More license files omit 619adbbcef Update LICENSE-binary and add new licenses add a46ad72797 Update licenses 1.0 (#11279) add 8bc4febba0 UI: fix sql query options seperator (#10770) add c1e3159b02 Adding ASF DOAP file (#11284) add f7d55c5d92 fix pinot doap git repo (#11286) add 48490933de Support parsing ARRAY literal in multistage query engine (#11268) add bc4a225428 Make PinotTableRestletResourceTest java8 compatible (#11287) add f4e1ce9110 Add a method before server starts serving queries (#11288) add a6e23c1f73 Fix Java8 compat in Vector Transform tests (#11289) add d7d3bdb1ab fixing pmc field in doap_Pinot.rdf (#11295) add 714aca6eef Update Notice-Binary (#11294) add 9f1ab2a25c Add query log for multi-stage queries (#11297) add 95f2382a6e Add percentiles report in QuerySummary (#11299) add 4b30fa5c02 Fixing the flaky test TupleSketchIntegrationTest (#11290) add 2c4b3ff1f2 Add meter for broker responses with unavailable segments (#11301) add 6fa426886e Add projection operator utils to unify and allow plugability (#11291) This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (568e8dffd7) \ N -- N -- N refs/heads/release-1.0-rc (6fa426886e) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: LICENSE-binary | 2 +- NOTICE-binary | 191 +++++++++++++- doap_Pinot.rdf | 64 +++++ .../apache/pinot/broker/querylog/QueryLogger.java | 9 +- .../requesthandler/BaseBrokerRequestHandler.java | 51 ++-- .../MultiStageBrokerRequestHandler.java | 82 ++---- .../common/function/TransformFunctionType.java | 2 + .../apache/pinot/common/metrics/BrokerMeter.java | 2 + .../org/apache/pinot/common/utils/DataSchema.java | 54 +++- .../src/main/resources/app/pages/Query.tsx | 8 +- .../api/PinotTableRestletResourceTest.java | 3 +- .../core/operator/ProjectionOperatorUtils.java | 57 ++++ .../ExpressionScanDocIdIterator.java | 12 +- .../operator/query/SelectionOrderByOperator.java | 3 +- .../function/ArrayLiteralTransformFunction.java | 291 +++++++++++++++++++++ .../function/TransformFunctionFactory.java | 8 + .../apache/pinot/core/plan/ProjectPlanNode.java | 4 +- .../startree/plan/StarTreeProjectPlanNode.java | 4 +- .../core/data/function/VectorFunctionsTest.java | 19 ++ .../ArrayLiteralTransformFunctionTest.java | 167 ++++++++++++ .../function/VectorTransformFunctionTest.java | 13 +- .../tests/TupleSketchIntegrationTest.java | 11 +- .../integration/tests/VectorIntegrationTest.java | 87 +++++- .../apache/calcite/sql/fun/PinotOperatorTable.java | 8 +- .../planner/logical/RelToPlanNodeConverter.java | 21 +- .../local/function/InbuiltFunctionEvaluator.java | 39 ++- .../server/starter/helix/BaseServerStarter.java | 8 + .../org/apache/pinot/tools/perf/QueryRunner.java | 14 + pom.xml | 1 + 29 files changed, 1098 insertions(+), 137 deletions(-) create mode 100644 doap_Pinot.rdf create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/ProjectionOperatorUtils.java create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/ArrayLiteralTransformFunction.java create mode 100644 pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/ArrayLiteralTransformFunctionTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org