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 5e4d396 [CALCITE-3672] Support implicit type coercion for insert and
update
new 8658804 In DiffRepository, replace a synchronized Map with a Guava
cache
new 4e7f925 Add gradle task 'aggregateJavadocIncludingTests' that builds
javadoc for both main and test
new 8a49c9f Bump spark-core_2.10 from 2.2.0 to 2.2.2
new 61da868 Contribute class Resources to ASF, and change its header
new 68eacfc Javadoc warning
new e88809e [CALCITE-3328] Immutable beans, powered by reflection
new c416c31 [CALCITE-3526] SqlPrettyWriter should have options to
fold/chop long lines, print leading commas
The 7 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/test/BabelQuidemTest.java | 4 +-
babel/src/test/resources/sql/select.iq | 2 +-
build.gradle.kts | 14 +
.../calcite/adapter/cassandra/CassandraSchema.java | 13 +-
.../org/apache/calcite/adapter/jdbc/JdbcTable.java | 12 +-
.../calcite/rel/rel2sql/RelToSqlConverter.java | 3 +-
.../java/org/apache/calcite/runtime/Resources.java | 87 +-
.../java/org/apache/calcite/sql/SqlAsOperator.java | 2 +-
.../main/java/org/apache/calcite/sql/SqlJoin.java | 20 +-
.../org/apache/calcite/sql/SqlMatchRecognize.java | 6 +-
.../main/java/org/apache/calcite/sql/SqlNode.java | 44 +-
.../java/org/apache/calcite/sql/SqlNodeList.java | 57 +-
.../java/org/apache/calcite/sql/SqlOperator.java | 36 +-
.../java/org/apache/calcite/sql/SqlOrderBy.java | 6 +-
.../org/apache/calcite/sql/SqlSelectOperator.java | 65 +-
.../apache/calcite/sql/SqlWithinGroupOperator.java | 2 +-
.../java/org/apache/calcite/sql/SqlWriter.java | 55 +-
.../org/apache/calcite/sql/SqlWriterConfig.java | 434 +++++++
.../apache/calcite/sql/fun/SqlCaseOperator.java | 5 +-
.../calcite/sql/fun/SqlStdOperatorTable.java | 1 +
.../apache/calcite/sql/pretty/SqlPrettyWriter.java | 1231 ++++++++++++--------
.../apache/calcite/sql/type/IntervalSqlType.java | 11 +-
.../org/apache/calcite/util/ImmutableBeans.java | 386 ++++++
.../apache/calcite/sql/parser/SqlParserTest.java | 168 ++-
.../calcite/sql/test/SqlOperatorBaseTest.java | 13 +-
.../calcite/sql/test/SqlPrettyWriterTest.java | 262 ++++-
.../org/apache/calcite/test/DiffRepository.java | 62 +-
.../org/apache/calcite/test/JdbcAdapterTest.java | 2 +-
.../org/apache/calcite/test/RexProgramTest.java | 11 +-
.../apache/calcite/test/SqlToRelConverterTest.java | 26 +-
.../test/enumerable/EnumerableCalcTest.java | 3 +-
.../calcite/test/fuzzer/RexProgramFuzzyTest.java | 11 +-
.../org/apache/calcite/util/ImmutableBeanTest.java | 433 +++++++
.../calcite/sql/test/SqlPrettyWriterTest.xml | 337 +++++-
.../adapter/elasticsearch/PredicateAnalyzer.java | 1 +
.../calcite/adapter/elasticsearch/MatchTest.java | 80 +-
gradle.properties | 2 +-
.../org/apache/calcite/piglet/PigConverter.java | 13 +-
.../java/org/apache/calcite/test/PigRelOpTest.java | 122 +-
.../org/apache/calcite/adapter/tpch/TpchTest.java | 5 +-
.../org/apache/calcite/sql/ddl/SqlDdlNodes.java | 22 +-
41 files changed, 3084 insertions(+), 985 deletions(-)
create mode 100644
core/src/main/java/org/apache/calcite/sql/SqlWriterConfig.java
create mode 100644
core/src/main/java/org/apache/calcite/util/ImmutableBeans.java
create mode 100644
core/src/test/java/org/apache/calcite/util/ImmutableBeanTest.java