This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/hk2.version-3.1.0 in repository https://gitbox.apache.org/repos/asf/pinot.git
discard ee40f9aec5 Bump hk2.version from 2.6.1 to 3.1.0 add 08fc2c7d62 upgrade lmax disruptor to 4.0.0 (#12769) add 4abb2d18f7 Set column major builder to be on by default (#12770) add 3695bed80d Upgrade Calcite to 1.36.0 (#12754) add 3badec56d7 Remove unused jcabi-log dependency (#12771) add e7e4888ef7 Upgrade Jersey related libraries (#12772) add 40b298e64b Bump hk2.version from 2.6.1 to 3.1.0 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 (ee40f9aec5) \ N -- N -- N refs/heads/dependabot/maven/hk2.version-3.1.0 (40b298e64b) 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-broker/pom.xml | 4 - pinot-common/pom.xml | 30 +- pinot-common/src/main/codegen/config.fmpp | 111 +- pinot-common/src/main/codegen/default_config.fmpp | 465 + .../src/main/codegen/includes/parserImpls.ftl | 32 +- pinot-common/src/main/codegen/templates/Parser.jj | 9131 ++++++++++++++++++++ .../apache/pinot/sql/parsers/CalciteSqlParser.java | 78 +- .../org/apache/pinot/sql/parsers/ParserUtils.java | 70 + .../pinot/sql/parsers/CalciteSqlCompilerTest.java | 18 +- pinot-controller/pom.xml | 5 +- .../api/resources/PinotQueryResource.java | 10 +- .../core/data/function/DateTimeFunctionsTest.java | 6 +- .../tests/StarTreeClusterIntegrationTest.java | 4 +- .../pinot/integration/tests/custom/ArrayTest.java | 313 +- .../src/test/resources/ssb/ssb_query_set.yaml | 6 +- .../pinot-input-format/pinot-protobuf/pom.xml | 8 - .../calcite/rel/rules/PinotQueryRuleSets.java | 9 +- .../apache/calcite/rel/rules/PinotRuleUtils.java | 18 +- .../calcite/sql2rel/PinotConvertletTable.java | 19 +- .../org/apache/pinot/query/QueryEnvironment.java | 162 +- .../query/parser/CalciteRexExpressionParser.java | 11 +- .../org/apache/pinot/query/parser/ParserUtils.java | 118 - .../apache/pinot/query/parser/QueryRewriter.java | 46 - .../org/apache/pinot/query/planner/QueryPlan.java | 51 - .../pinot/query/planner/QueryPlanMetadata.java | 10 +- .../pinot/query/planner/SubPlanMetadata.java | 9 +- .../planner/logical/PinotLogicalQueryPlanner.java | 42 +- .../query/planner/logical/SubPlanFragmenter.java | 5 +- .../planner/physical/DispatchablePlanContext.java | 8 +- .../planner/physical/DispatchableSubPlan.java | 8 +- .../org/apache/pinot/query/validate/Validator.java | 3 +- .../apache/pinot/query/QueryCompilationTest.java | 6 +- .../query/queries/ResourceBasedQueryPlansTest.java | 10 +- .../src/test/resources/queries/JoinPlans.json | 39 +- .../test/resources/queries/PinotHintablePlans.json | 2 +- .../resources/queries/WindowFunctionPlans.json | 72 +- .../query/service/dispatch/QueryDispatcher.java | 12 +- .../runtime/queries/ResourceBasedQueriesTest.java | 2 +- .../src/test/resources/queries/Case.json | 7 +- .../test/resources/queries/LexicalStructure.json | 2 +- .../src/test/resources/queries/TypeCasting.json | 8 +- pinot-server/pom.xml | 4 - .../pinot/spi/config/table/IndexingConfig.java | 2 +- .../table/ingestion/StreamIngestionConfig.java | 2 +- .../apache/pinot/spi/utils/CommonConstants.java | 2 +- .../spi/utils/builder/TableConfigBuilder.java | 2 +- pinot-tools/pom.xml | 4 - pom.xml | 51 +- 48 files changed, 10152 insertions(+), 885 deletions(-) create mode 100644 pinot-common/src/main/codegen/default_config.fmpp create mode 100644 pinot-common/src/main/codegen/templates/Parser.jj create mode 100644 pinot-common/src/main/java/org/apache/pinot/sql/parsers/ParserUtils.java delete mode 100644 pinot-query-planner/src/main/java/org/apache/pinot/query/parser/ParserUtils.java delete mode 100644 pinot-query-planner/src/main/java/org/apache/pinot/query/parser/QueryRewriter.java delete mode 100644 pinot-query-planner/src/main/java/org/apache/pinot/query/planner/QueryPlan.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org