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 a5af80642 [CALCITE-5170] Assertion error on range distribution creation
add 0f666b3d2 [CALCITE-5153] Create an immutable version of
ListSqlOperatorTable
add 231008a16 [CALCITE-5171] NATURAL join and USING should fail if join
columns are not unique
new 63a15128a [CALCITE-35] Support parsing parenthesized joins
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:
core/src/main/codegen/templates/Parser.jj | 514 ++++++++++++---------
.../calcite/prepare/CalciteCatalogReader.java | 8 +-
.../apache/calcite/runtime/CalciteResource.java | 8 +-
.../main/java/org/apache/calcite/sql/SqlJoin.java | 24 +-
.../org/apache/calcite/sql/SqlOperatorTable.java | 2 +-
.../org/apache/calcite/sql/SqlSelectOperator.java | 4 +-
.../sql/fun/SqlLibraryOperatorTableFactory.java | 7 +-
.../calcite/sql/parser/SqlAbstractParserImpl.java | 57 ++-
.../calcite/sql/util/ListSqlOperatorTable.java | 22 +-
.../apache/calcite/sql/util/SqlOperatorTables.java | 51 +-
.../calcite/sql/validate/SqlNameMatcher.java | 14 +
.../calcite/sql/validate/SqlValidatorImpl.java | 146 +++---
.../calcite/sql/validate/SqlValidatorUtil.java | 19 +-
.../calcite/runtime/CalciteResource.properties | 4 +-
.../calcite/rel/rel2sql/RelToSqlConverterTest.java | 12 +-
.../java/org/apache/calcite/test/JdbcTest.java | 25 +-
.../org/apache/calcite/test/SqlValidatorTest.java | 109 ++++-
.../java/org/apache/calcite/tools/PlannerTest.java | 11 +-
core/src/test/resources/sql/join.iq | 275 +++++++++++
core/src/test/resources/sql/set-op.iq | 30 ++
.../apache/calcite/sql/parser/SqlParserTest.java | 164 ++++++-
.../apache/calcite/sql/test/SqlTestFactory.java | 6 +-
.../apache/calcite/test/MockSqlOperatorTable.java | 62 ++-
23 files changed, 1143 insertions(+), 431 deletions(-)