From commits-return-15905-archive-asf-public=cust-asf.ponee.io@pinot.apache.org Mon Feb 3 23:52:41 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 77162180647 for ; Tue, 4 Feb 2020 00:52:41 +0100 (CET) Received: (qmail 34093 invoked by uid 500); 3 Feb 2020 23:52:40 -0000 Mailing-List: contact commits-help@pinot.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pinot.apache.org Delivered-To: mailing list commits@pinot.apache.org Received: (qmail 34084 invoked by uid 99); 3 Feb 2020 23:52:40 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Feb 2020 23:52:40 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 89DC98B690; Mon, 3 Feb 2020 23:52:40 +0000 (UTC) Date: Mon, 03 Feb 2020 23:52:39 +0000 To: "commits@pinot.apache.org" Subject: [incubator-pinot] branch make_alias_in_output_schema updated (6cfbcaf -> c7c2c02) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158077395897.27770.8959350508139555795@gitbox.apache.org> From: xiangfu@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-pinot X-Git-Refname: refs/heads/make_alias_in_output_schema X-Git-Reftype: branch X-Git-Oldrev: 6cfbcaf924a9226dd3f719e036cd5d2c0edaa54c X-Git-Newrev: c7c2c02a6d9005f024b302108556de8c145848b0 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a change to branch make_alias_in_output_schema in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git. discard 6cfbcaf Address comments discard 27b8f5c Address comments discard c4c49db Adding test for cast with reduce discard d10afbb Set alias name in response schema names add 8c91911 Support cast as a transform function (#5030) add bef6fda Do not derive host/port from instance id in HelixServerStarter (#5027) add 89fec1e Change SqlConformanceLevel from LENIENT to BABEL (#5031) add 0b3a60d [TE] Add reference link to labelling anomalies in alert notifications (#5037) add f5fe4af fixing start kafka command (#5042) add 846b4d6 Set alias name in response schema names add 1ffad45 Adding test for cast with reduce add 5464c79 Address comments add c7c2c02 Address comments 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 (6cfbcaf) \ N -- N -- N refs/heads/make_alias_in_output_schema (c7c2c02) 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: pinot-common/pom.xml | 4 + .../common/function/TransformFunctionType.java | 1 + .../apache/pinot/sql/parsers/CalciteSqlParser.java | 16 +- .../pinot/sql/parsers/CalciteSqlCompilerTest.java | 205 + .../transform/function/CastTransformFunction.java | 108 + .../function/TransformFunctionFactory.java | 1 + .../function/BaseTransformFunctionTest.java | 7 + ...ionTest.java => CastTransformFunctionTest.java} | 45 +- .../tests/BaseClusterIntegrationTestSet.java | 15 +- .../tests/ClusterIntegrationTestUtils.java | 104 +- .../tests/ServerStarterIntegrationTest.java | 132 +- ...rformance_2014_100k_subset.test_queries_10K.sql | 7422 ++++++++++---------- .../server/starter/helix/HelixServerStarter.java | 99 +- .../tools/admin/command/StartKafkaCommand.java | 12 +- .../pinot/tools/utils/KafkaStarterUtils.java | 2 +- pom.xml | 5 + .../translator/SubscriptionConfigTranslator.java | 3 +- 17 files changed, 4294 insertions(+), 3887 deletions(-) create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/CastTransformFunction.java copy pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/{MultiplicationTransformFunctionTest.java => CastTransformFunctionTest.java} (55%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org For additional commands, e-mail: commits-help@pinot.apache.org