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

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


    from b5a761e  Enable more tests in TpchTest
     new 5cd75b4  Add an overloaded SqlOperator.createCall
     new 3038fb7  [CALCITE-4335] ARRAY_AGG, ARRAY_CONCAT_AGG, STRING_AGG 
aggregate functions for BigQuery

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/default_config.fmpp          |   3 +
 core/src/main/codegen/templates/Parser.jj          | 199 ++++++++++++++-------
 .../calcite/adapter/enumerable/RexImpTable.java    |  10 +-
 .../apache/calcite/rel/rel2sql/SqlImplementor.java |  10 +-
 .../main/java/org/apache/calcite/sql/SqlCall.java  |   3 +-
 .../apache/calcite/sql/SqlFunctionalOperator.java  |   2 +-
 .../main/java/org/apache/calcite/sql/SqlKind.java  |  12 +-
 .../org/apache/calcite/sql/SqlLateralOperator.java |   2 +-
 .../calcite/sql/SqlNullTreatmentOperator.java      |   7 +
 .../java/org/apache/calcite/sql/SqlOperator.java   |  43 +++--
 .../java/org/apache/calcite/sql/SqlSyntax.java     |  29 ++-
 .../main/java/org/apache/calcite/sql/SqlUtil.java  |  26 ++-
 .../calcite/sql/dialect/MssqlSqlDialect.java       |   2 +-
 .../calcite/sql/dialect/OracleSqlDialect.java      |   2 +-
 .../calcite/sql/dialect/SparkSqlDialect.java       |   2 +-
 .../apache/calcite/sql/fun/SqlFloorFunction.java   |   2 +-
 .../calcite/sql/fun/SqlJsonDepthFunction.java      |   8 -
 .../calcite/sql/fun/SqlJsonPrettyFunction.java     |   8 -
 .../calcite/sql/fun/SqlJsonTypeFunction.java       |   8 -
 .../calcite/sql/fun/SqlLibraryOperators.java       |  51 ++++++
 ...AggFunction.java => SqlListaggAggFunction.java} |  26 +--
 .../org/apache/calcite/sql/fun/SqlRowOperator.java |   2 +-
 .../calcite/sql/fun/SqlStdOperatorTable.java       |  16 +-
 ...dFunction.java => SqlStringAggAggFunction.java} |  45 +++--
 .../org/apache/calcite/sql/type/ReturnTypes.java   |  51 ++++++
 .../apache/calcite/sql/type/SqlTypeTransforms.java |  10 ++
 .../calcite/sql/util/ListSqlOperatorTable.java     |   2 +-
 .../apache/calcite/sql2rel/SqlToRelConverter.java  |  38 ++++
 .../calcite/sql/SqlSetOptionOperatorTest.java      |   5 +-
 .../apache/calcite/sql/parser/SqlParserTest.java   |  36 ++++
 .../apache/calcite/sql/test/AbstractSqlTester.java |   7 +-
 .../calcite/sql/test/SqlOperatorBaseTest.java      | 191 ++++++++++++++------
 .../java/org/apache/calcite/test/QuidemTest.java   |   6 +
 core/src/test/resources/sql/agg.iq                 |  16 ++
 site/_docs/reference.md                            |   6 +
 35 files changed, 639 insertions(+), 247 deletions(-)
 copy core/src/main/java/org/apache/calcite/sql/fun/{SqlNtileAggFunction.java 
=> SqlListaggAggFunction.java} (68%)
 copy core/src/main/java/org/apache/calcite/sql/fun/{SqlRandFunction.java => 
SqlStringAggAggFunction.java} (50%)

Reply via email to