This is an automated email from the ASF dual-hosted git repository. jhyde pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/calcite.git
from c89bd13cb2 [CALCITE-5159] ARRAY string constructor, and implicit cast from string literal to array literal (enabled in Postgres conformance) add 814ae6ec09 Add class SqlBasicFunction add 08f37e58bb Refactor SqlOperatorTest new 326b993fec [CALCITE-5385] Add BigQuery as a supported library for some functions that are already implemented for other libraries The 1 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: .../org/apache/calcite/rel/metadata/RelMdUtil.java | 5 +- .../org/apache/calcite/sql/SqlBasicFunction.java | 182 +++++++ .../calcite/sql/dialect/MssqlSqlDialect.java | 7 +- .../calcite/sql/dialect/MysqlSqlDialect.java | 7 +- .../calcite/sql/dialect/SparkSqlDialect.java | 8 +- .../calcite/sql/fun/SqlLibraryOperators.java | 294 +++++----- .../apache/calcite/sql/fun/SqlRandFunction.java | 5 - .../calcite/sql/fun/SqlRandIntegerFunction.java | 5 - .../calcite/sql/fun/SqlStdOperatorTable.java | 260 +++------ .../calcite/rel/rel2sql/RelToSqlConverterTest.java | 2 +- .../org/apache/calcite/rex/RexProgramTest.java | 56 +- .../org/apache/calcite/test/RelMetadataTest.java | 17 +- .../org/apache/calcite/test/RelOptRulesTest.java | 25 +- site/_docs/reference.md | 33 +- .../apache/calcite/sql/parser/SqlParserTest.java | 2 +- .../calcite/sql/test/SqlOperatorFixture.java | 13 + .../org/apache/calcite/test/SqlOperatorTest.java | 597 ++++++++++++--------- 17 files changed, 785 insertions(+), 733 deletions(-) create mode 100644 core/src/main/java/org/apache/calcite/sql/SqlBasicFunction.java