You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2020/01/10 08:22:15 UTC

[calcite] branch master updated (5297b83 -> 3acb308)

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

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


    from 5297b83  [CALCITE-3719] Add hint option checker to customize the option validation
     add 3acb308  [CALCITE-2450] Reorder RexCall predicates to a canonical form

No new revisions were added by this update.

Summary of changes:
 .../calcite/config/CalciteSystemProperty.java      |   7 ++
 .../java/org/apache/calcite/rel/RelWriter.java     |  15 +++
 .../calcite/rel/externalize/RelJsonWriter.java     |   5 +-
 .../calcite/rel/externalize/RelWriterImpl.java     |  21 ++--
 .../main/java/org/apache/calcite/rex/RexCall.java  | 109 +++++++++++++++++++--
 .../main/java/org/apache/calcite/rex/RexNode.java  |  76 ++++++++++++++
 .../main/java/org/apache/calcite/sql/SqlKind.java  |  25 +++++
 .../calcite/materialize/LatticeSuggesterTest.java  |   4 +-
 .../calcite/rel/rules/DateRangeRulesTest.java      |   4 +-
 .../calcite/rex/RexCallNormalizationTest.java      |  99 +++++++++++++++++++
 .../apache/calcite/rex/RexProgramBuilderBase.java  |  60 ++++++++++++
 .../org/apache/calcite/rex/RexProgramTest.java     |   8 +-
 .../org/apache/calcite/rex/RexProgramTestBase.java |  44 ++++++---
 .../apache/calcite/test/MaterializationTest.java   |  10 +-
 .../org/apache/calcite/test/RelMetadataTest.java   |  51 +++++-----
 .../apache/calcite/test/RexTransformerTest.java    |   4 +-
 .../org/apache/calcite/tools/FrameworksTest.java   |   2 +-
 .../java/org/apache/calcite/tools/PlannerTest.java |   6 +-
 18 files changed, 474 insertions(+), 76 deletions(-)
 create mode 100644 core/src/test/java/org/apache/calcite/rex/RexCallNormalizationTest.java