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 7dc94e381b [CALCITE-5757] BigQuery DATE_TRUNC return type should be
ARG0 and TIMESTAMP_TRUNC/DATETIME_TRUNC should return TIMESTAMP for
DATE/TIMESTAMPs and TIMESTAMP_LTZ for TIMESTAMP_LTZ
new 644a3f0727 [CALCITE-5762] Create class TestUnsafe, that contains
unsafe methods used by tests
new 4219c993b6 [CALCITE-5706] Add class PairList
new 267326d15e [CALCITE-5764] Add Puffin
new ac4920bb0a In Puffin, add actions before and after each source and all
sources
new abf05e39ee Code style: Lint
new c0e6ba264b [CALCITE-5765] Add LintTest, to apply custom lint rules to
source code
The 6 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:
build.gradle.kts | 4 +-
.../apache/calcite/plan/SubstitutionVisitor.java | 2 +-
.../calcite/plan/volcano/IterativeRuleDriver.java | 2 +-
.../org/apache/calcite/rex/RexVisitorImpl.java | 4 +-
.../java/org/apache/calcite/runtime/PairList.java | 178 ++++++++++
.../apache/calcite/sql/SqlDescriptorOperator.java | 2 +-
.../java/org/apache/calcite/util/Glossary.java | 2 +-
.../main/java/org/apache/calcite/util/Puffin.java | 392 +++++++++++++++++++++
.../main/java/org/apache/calcite/util/Sources.java | 18 +-
.../apache/calcite/rex/RexProgramBuilderBase.java | 2 +-
.../apache/calcite/sql/test/DocumentationTest.java | 32 +-
.../java/org/apache/calcite/test/JdbcTest.java | 3 +-
.../java/org/apache/calcite/test/LintTest.java | 283 +++++++++++++++
.../java/org/apache/calcite/test/PuffinTest.java | 174 +++++++++
.../org/apache/calcite/test/SqlValidatorTest.java | 6 +-
.../concurrent/ConcurrentTestCommandScript.java | 85 +----
.../java/org/apache/calcite/util/PairListTest.java | 126 +++++++
.../java/org/apache/calcite/util/TestUnsafe.java | 210 +++++++++++
.../calcite/util/graph/DirectedGraphTest.java | 2 +-
.../calcite/adapter/elasticsearch/Scrolling.java | 2 +-
.../apache/calcite/linq4j/EnumerableDefaults.java | 4 +-
.../apache/calcite/linq4j/QueryableDefaults.java | 2 +-
.../org/apache/calcite/linq4j/tree/Blocks.java | 2 +-
.../org/apache/calcite/linq4j/tree/Expression.java | 2 +-
.../org/apache/calcite/linq4j/tree/Statement.java | 2 +-
.../java/org/apache/calcite/util/TestUtil.java | 41 ++-
26 files changed, 1442 insertions(+), 140 deletions(-)
create mode 100644 core/src/main/java/org/apache/calcite/runtime/PairList.java
create mode 100644 core/src/main/java/org/apache/calcite/util/Puffin.java
create mode 100644 core/src/test/java/org/apache/calcite/test/LintTest.java
create mode 100644 core/src/test/java/org/apache/calcite/test/PuffinTest.java
create mode 100644 core/src/test/java/org/apache/calcite/util/PairListTest.java
create mode 100644 core/src/test/java/org/apache/calcite/util/TestUnsafe.java