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

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


 discard 5b9cfaf  Improve controller tests
     add 52f69d1  [TE] Added support for Vertica as a data source (#4404)
     add a7c419a  Adding Calcite SQL Parser and make another entry point to 
query Pinot (#4387)
     add e041ec5  [TE] frontend - harleyjj/detection-health - UI for model 
performance (#4413)
     add d0a25c9  Improve controller tests

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   (5b9cfaf)
            \
             N -- N -- N   refs/heads/helix_debug (d0a25c9)

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:
 .../java/org/apache/pinot/client/Connection.java   |  44 +-
 .../client/JsonAsyncHttpPinotClientTransport.java  |  30 +-
 .../apache/pinot/client/PinotClientTransport.java  |   6 +
 .../main/java/org/apache/pinot/client/Request.java |  38 +-
 .../apache/pinot/client/PreparedStatementTest.java |  40 +-
 .../apache/pinot/client/ResultSetGroupTest.java    |  38 +-
 .../requesthandler/BaseBrokerRequestHandler.java   |  28 +-
 ...enNestedPredicatesFilterQueryTreeOptimizer.java |   3 +-
 .../requesthandler/PinotQueryParserFactory.java    |  49 +++
 .../broker/requesthandler/PinotQueryRequest.java   |  32 +-
 .../request/PqlAndCalciteSqlCompatibilityTest.java | 123 ++++++
 pinot-common/pom.xml                               |   4 +
 .../apache/pinot/common/utils/CommonConstants.java |   1 +
 .../pinot/common/utils/request/RequestUtils.java   |  55 ++-
 .../pinot/{pql => }/parsers/AbstractCompiler.java  |   7 +-
 .../utils/BrokerRequestComparisonUtils.java        | 235 +++++++++++
 .../parsers/PinotQuery2BrokerRequestConverter.java |   5 +-
 .../org/apache/pinot/pql/parsers/Pql2Compiler.java |  63 +--
 .../parsers/pql2/ast/BetweenPredicateAstNode.java  |   2 +-
 .../pql2/ast/ComparisonPredicateAstNode.java       |  20 +-
 .../pql/parsers/pql2/ast/InPredicateAstNode.java   |   2 +-
 .../pinot/pql/parsers/pql2/ast/OrderByAstNode.java |   2 +-
 .../pql/parsers/pql2/ast/OutputColumnAstNode.java  |   2 +-
 .../pql/parsers/pql2/ast/PredicateListAstNode.java |   2 +-
 .../pql2/ast/RegexpLikePredicateAstNode.java       |   2 +-
 .../parsers/CalciteSqlCompiler.java}               |  19 +-
 .../apache/pinot/sql/parsers/CalciteSqlParser.java | 273 ++++++++++++
 .../pinot/sql/parsers/SqlCompilationException.java |  12 +-
 .../request/BrokerRequestSerializationTest.java    |  10 +-
 .../pinot/sql/parsers/CalciteSqlCompilerTest.java  | 465 +++++++++++++++++++++
 pinot-common/src/test/resources/pql_queries.list   |   5 +
 .../{pql_queries.list => sql_queries.list}         | 247 +++++------
 .../apache/pinot/controller/ControllerStarter.java |   3 +
 .../helix/core/util/HelixSetupUtils.java           |  27 +-
 .../pinot/controller/helix/ControllerTest.java     |   7 +-
 .../controller/helix/PinotControllerModeTest.java  | 213 +++++-----
 .../helix/core/PinotHelixResourceManagerTest.java  | 104 ++---
 .../test/java/org/apache/pinot/util/TestUtils.java |  39 +-
 .../tests/BaseClusterIntegrationTest.java          |  15 +-
 .../tests/BaseClusterIntegrationTestSet.java       |  85 ++++
 .../tests/ClusterIntegrationTestUtils.java         |  41 +-
 .../pinot/integration/tests/ClusterTest.java       |  11 +-
 .../DeleteAPIHybridClusterIntegrationTest.java     |  24 +-
 ...mentBuildPushOfflineClusterIntegrationTest.java |   7 +
 .../tests/HybridClusterIntegrationTest.java        |   7 +
 ...ridClusterIntegrationTestCommandLineRunner.java |   4 +-
 .../MultiNodesOfflineClusterIntegrationTest.java   |   7 +
 .../tests/OfflineClusterIntegrationTest.java       |   7 +
 .../tests/RealtimeClusterIntegrationTest.java      |  13 +
 .../tests/SegmentCompletionIntegrationTests.java   |   7 +
 pom.xml                                            |  84 ++++
 .../app/pods/components/alert-details/component.js |   2 +
 .../app/pods/components/alert-details/template.hbs |  80 +++-
 .../pods/components/detection-health/component.js  | 194 +++++++++
 .../pods/components/detection-health/template.hbs  |  84 ++++
 .../app/pods/components/stats-cards/component.js   |  42 +-
 .../app/pods/components/stats-cards/template.hbs   |  61 ++-
 .../app/pods/components/yaml-editor/template.hbs   |   2 +-
 .../app/pods/manage/explore/route.js               |  37 +-
 .../app/pods/manage/explore/template.hbs           |   1 +
 .../app/pods/manage/yaml/route.js                  |  46 +-
 .../app/pods/manage/yaml/template.hbs              |   3 +-
 .../app/pods/self-serve/create-alert/template.hbs  |   2 +-
 .../app/styles/shared/_styles.scss                 | 118 ++++++
 .../datasource/sql/SqlResponseCacheLoader.java     |  37 ++
 .../pinot/thirdeye/datasource/sql/SqlUtils.java    |   3 +
 66 files changed, 2669 insertions(+), 612 deletions(-)
 copy 
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datasource/RelationalQuery.java
 => pinot-api/src/main/java/org/apache/pinot/client/Request.java (64%)
 create mode 100644 
pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/PinotQueryParserFactory.java
 copy 
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datasource/RelationalQuery.java
 => 
pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/PinotQueryRequest.java
 (71%)
 create mode 100644 
pinot-broker/src/test/java/org/apache/pinot/broker/request/PqlAndCalciteSqlCompatibilityTest.java
 rename pinot-common/src/main/java/org/apache/pinot/{pql => 
}/parsers/AbstractCompiler.java (81%)
 create mode 100644 
pinot-common/src/main/java/org/apache/pinot/parsers/utils/BrokerRequestComparisonUtils.java
 copy 
pinot-common/src/main/java/org/apache/pinot/{pql/parsers/pql2/ast/HavingAstNode.java
 => sql/parsers/CalciteSqlCompiler.java} (63%)
 create mode 100644 
pinot-common/src/main/java/org/apache/pinot/sql/parsers/CalciteSqlParser.java
 copy 
pinot-core/src/main/java/org/apache/pinot/core/query/scheduler/OutOfCapacityException.java
 => 
pinot-common/src/main/java/org/apache/pinot/sql/parsers/SqlCompilationException.java
 (75%)
 create mode 100644 
pinot-common/src/test/java/org/apache/pinot/sql/parsers/CalciteSqlCompilerTest.java
 copy pinot-common/src/test/resources/{pql_queries.list => sql_queries.list} 
(87%)
 create mode 100644 
thirdeye/thirdeye-frontend/app/pods/components/detection-health/component.js
 create mode 100644 
thirdeye/thirdeye-frontend/app/pods/components/detection-health/template.hbs


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to