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

[calcite] branch master updated (2282b95 -> 5297b83)

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

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


    from 2282b95  [CALCITE-3677] Add assertion to EnumerableTableScan constructor to validate if the table is suitable for enumerable scan
     add 5297b83  [CALCITE-3719] Add hint option checker to customize the option validation

No new revisions were added by this update.

Summary of changes:
 core/build.gradle.kts                              |   2 +-
 .../java/org/apache/calcite/plan/RelOptTable.java  |   4 +-
 .../org/apache/calcite/plan/ViewExpanders.java     |   8 +-
 .../apache/calcite/rel/hint/HintOptionChecker.java |  51 ++++++++++
 .../apache/calcite/rel/hint/HintStrategyTable.java | 111 ++++++++++++++++++---
 .../org/apache/calcite/rel/hint/package-info.java  |   4 +-
 .../main/java/org/apache/calcite/sql/SqlUtil.java  |   6 +-
 .../apache/calcite/test/SqlHintsConverterTest.java |  90 +++++++++++++++--
 8 files changed, 240 insertions(+), 36 deletions(-)
 create mode 100644 core/src/main/java/org/apache/calcite/rel/hint/HintOptionChecker.java