This is an automated email from the ASF dual-hosted git repository.
fengzhu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git.
from e081c5b [CALCITE-3866] "numeric field overflow" when running the
generated SQL in PostgreSQL (Wenhui Tang)
new 40e588d [CALCITE-3737] HOP Table Function (Rui Wang)
new 890eb61 [CALCITE-3780] SESSION Table function (Rui Wang)
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
core/src/main/codegen/config.fmpp | 1 +
core/src/main/codegen/templates/Parser.jj | 24 +-
.../calcite/adapter/enumerable/EnumUtils.java | 274 ++++++++++++++++++++-
.../enumerable/EnumerableTableFunctionScan.java | 6 +-
.../calcite/adapter/enumerable/RexImpTable.java | 69 +++++-
.../adapter/enumerable/RexToLixTranslator.java | 8 +-
...ntor.java => TableFunctionCallImplementor.java} | 2 +-
.../apache/calcite/sql/SqlHopTableFunction.java | 69 ++++++
.../calcite/sql/SqlSessionTableFunction.java | 71 ++++++
.../apache/calcite/sql/SqlTumbleTableFunction.java | 65 +++++
.../apache/calcite/sql/SqlWindowTableFunction.java | 49 +---
.../calcite/sql/fun/SqlStdOperatorTable.java | 42 ++--
.../apache/calcite/sql2rel/AuxiliaryConverter.java | 2 +-
.../org/apache/calcite/util/BuiltInMethod.java | 7 +-
.../apache/calcite/test/SqlToRelConverterTest.java | 39 ++-
.../org/apache/calcite/test/SqlValidatorTest.java | 65 ++++-
.../apache/calcite/test/SqlToRelConverterTest.xml | 78 +++++-
core/src/test/resources/sql/stream.iq | 66 +++++
.../apache/calcite/linq4j/EnumerableDefaults.java | 32 ---
site/_docs/reference.md | 36 ++-
20 files changed, 884 insertions(+), 121 deletions(-)
rename
core/src/main/java/org/apache/calcite/adapter/enumerable/{TableValuedFunctionCallImplementor.java
=> TableFunctionCallImplementor.java} (96%)
create mode 100644
core/src/main/java/org/apache/calcite/sql/SqlHopTableFunction.java
create mode 100644
core/src/main/java/org/apache/calcite/sql/SqlSessionTableFunction.java
create mode 100644
core/src/main/java/org/apache/calcite/sql/SqlTumbleTableFunction.java