This is an automated email from the ASF dual-hosted git repository.
rubenql pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git.
from 170bb9b [CALCITE-3546] Improve EnumerableDefaults nested loop join
Provide a new implementation of nested loop join that, unlike the existing one,
does not require to build the complete result as a list before returning it.
Instead, it iterates through the outer and inner enumerables and returns the
results step by step.
add 3559b3b [CALCITE-3542] Implement RepeatUnion All=false
No new revisions were added by this update.
Summary of changes:
.../adapter/enumerable/EnumerableRepeatUnion.java | 22 ++--
.../org/apache/calcite/util/BuiltInMethod.java | 4 +-
.../EnumerableRepeatUnionHierarchyTest.java | 114 +++++++++++++------
.../test/enumerable/EnumerableRepeatUnionTest.java | 66 +++++++++++
.../apache/calcite/linq4j/EnumerableDefaults.java | 122 +++++++++++++--------
site/_docs/algebra.md | 4 +-
6 files changed, 240 insertions(+), 92 deletions(-)