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/15 01:40:25 UTC

[calcite] branch master updated (6257609 -> b80bb1c)

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 6257609  [CALCITE-3730] Add hints to RelBuilder
     add b80bb1c  [CALCITE-3382] Support TUMBLE as Table Value Function (Rui Wang)

No new revisions were added by this update.

Summary of changes:
 .../calcite/adapter/enumerable/EnumUtils.java      |  54 +++++++++
 .../enumerable/EnumerableTableFunctionScan.java    |  89 +++++++++++---
 .../EnumerableTableFunctionScanRule.java           |   2 +-
 .../calcite/adapter/enumerable/RexImpTable.java    |  43 +++++++
 .../adapter/enumerable/RexToLixTranslator.java     |  23 ++++
 ...ava => TableValuedFunctionCallImplementor.java} |  26 ++--
 .../apache/calcite/sql/SqlDescriptorOperator.java  |  75 ++++++++++++
 .../calcite/sql/SqlGroupedWindowFunction.java      |   7 --
 .../main/java/org/apache/calcite/sql/SqlKind.java  |   6 +-
 .../apache/calcite/sql/SqlWindowTableFunction.java | 132 +++++++++++++++++++++
 .../calcite/sql/fun/SqlStdOperatorTable.java       |   8 ++
 .../calcite/sql/validate/SqlValidatorImpl.java     |   3 +-
 .../apache/calcite/sql2rel/SqlToRelConverter.java  |   6 +
 .../org/apache/calcite/util/BuiltInMethod.java     |   3 +-
 .../apache/calcite/sql/parser/SqlParserTest.java   |  12 ++
 .../apache/calcite/test/SqlToRelConverterTest.java |  16 +++
 .../org/apache/calcite/test/SqlValidatorTest.java  |  38 +++++-
 .../apache/calcite/test/SqlToRelConverterTest.xml  |  34 +++++-
 core/src/test/resources/sql/stream.iq              |  46 +++++++
 .../apache/calcite/linq4j/EnumerableDefaults.java  |  32 +++++
 site/_docs/reference.md                            |  22 ++++
 21 files changed, 628 insertions(+), 49 deletions(-)
 copy core/src/main/java/org/apache/calcite/adapter/enumerable/{CallImplementor.java => TableValuedFunctionCallImplementor.java} (62%)
 create mode 100644 core/src/main/java/org/apache/calcite/sql/SqlDescriptorOperator.java
 create mode 100644 core/src/main/java/org/apache/calcite/sql/SqlWindowTableFunction.java
 create mode 100644 core/src/test/resources/sql/stream.iq