This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a change to branch snuyanzin-patch-1
in repository https://gitbox.apache.org/repos/asf/calcite.git
discard 9f1edd3c01 Address feedback
discard b82fcda0de Make SqlValidatorImpl#maybeCast protected to allow using it
by child classes
add 79de3a64bf [CALCITE-7359] Incorrect result for array comparison with
ANY operator
add 05347685da [CALCITE-7381] Parameters modified by !set must be restored
to their default values in Quidem test
add d0c72d1965 [CALCITE-5787] The RelMdInputFieldsUsed is introduced to
track the usage of input fields
add 6de626697a [CALCITE-7378] Potential incorrect column attribution in
RelToSqlConverter due to implicit table alias handling
add ae47b72804 [CALCITE-7356] The MARK JOIN generated by
TopDownGeneralDecorrelator needs to be adapted to RelFieldTrimmer
add a51effc8b3 Make SqlValidatorImpl#maybeCast protected to allow using it
by child classes
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (9f1edd3c01)
\
N -- N -- N refs/heads/snuyanzin-patch-1 (a51effc8b3)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../adapter/enumerable/EnumerableCollect.java | 14 +-
.../calcite/rel/metadata/BuiltInMetadata.java | 42 +
.../rel/metadata/DefaultRelMetadataProvider.java | 1 +
.../calcite/rel/metadata/RelMdInputFieldsUsed.java | 124 ++
.../calcite/rel/metadata/RelMdPredicates.java | 33 +-
.../calcite/rel/metadata/RelMetadataQuery.java | 17 +
.../apache/calcite/rel/rel2sql/SqlImplementor.java | 28 +-
.../org/apache/calcite/runtime/SqlFunctions.java | 179 ++-
.../apache/calcite/sql2rel/RelFieldTrimmer.java | 22 +-
.../org/apache/calcite/util/BuiltInMethod.java | 2 +
.../calcite/rel/rel2sql/RelToSqlConverterTest.java | 21 +-
.../org/apache/calcite/test/JdbcAdapterTest.java | 38 +-
.../org/apache/calcite/test/RelMetadataTest.java | 86 ++
core/src/test/resources/sql/agg.iq | 3 +
core/src/test/resources/sql/misc.iq | 151 ++-
core/src/test/resources/sql/new-decorr.iq | 56 +
core/src/test/resources/sql/planner.iq | 65 +
core/src/test/resources/sql/scalar.iq | 3 +
core/src/test/resources/sql/set-op.iq | 68 -
core/src/test/resources/sql/some.iq | 39 +-
core/src/test/resources/sql/sub-query.iq | 1389 ++++++++++++--------
.../apache/calcite/linq4j/function/Functions.java | 88 +-
.../java/org/apache/calcite/test/QuidemTest.java | 11 +
23 files changed, 1625 insertions(+), 855 deletions(-)
create mode 100644
core/src/main/java/org/apache/calcite/rel/metadata/RelMdInputFieldsUsed.java