This is an automated email from the ASF dual-hosted git repository.
sorabh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from 6ad0f9f DRILL-6453: Fix deadlock caused by reading from left and
right inputs in HashJoin simultaneously.
new 9725d4d DRILL-6687: Improve RemovingRecordBatch to do transfer when
all records needs to be copied Add optimization in SelectionVector2 to enable
RemovingRecordBatch to transfer ValueVectors from incoming to output container
when all records needs to be copied. Modified FilterRecordBatch and
LimitRecordBatch to play by this optimization
new d58554f DRILL-6687: Updated with review comments
The 2 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:
.../drill/exec/physical/impl/TopN/TopNBatch.java | 6 +-
.../exec/physical/impl/filter/FilterTemplate2.java | 7 ++
.../exec/physical/impl/limit/LimitRecordBatch.java | 1 +
.../physical/impl/svremover/AbstractCopier.java | 17 +++--
.../physical/impl/svremover/AbstractSV2Copier.java | 23 ++++++-
.../physical/impl/svremover/AbstractSV4Copier.java | 5 +-
.../drill/exec/physical/impl/svremover/Copier.java | 9 ++-
.../physical/impl/svremover/GenericCopier.java | 11 ++-
.../impl/svremover/GenericCopierFactory.java | 54 +++++++++++++++
.../physical/impl/svremover/GenericSV2Copier.java | 17 ++++-
.../physical/impl/svremover/GenericSV4Copier.java | 25 +++----
.../impl/svremover/RemovingRecordBatch.java | 80 +---------------------
.../physical/impl/svremover/StraightCopier.java | 69 +++++++++++++++++++
.../exec/record/selection/SelectionVector2.java | 23 +++++++
.../impl/svremover/AbstractGenericCopierTest.java | 35 ++++++----
.../physical/impl/svremover/GenericCopierTest.java | 8 ++-
...ierTest.java => GenericSV2BatchCopierTest.java} | 19 +++--
.../impl/svremover/GenericSV2CopierTest.java | 7 +-
.../impl/svremover/GenericSV4CopierTest.java | 9 +--
.../apache/drill/test/rowSet/IndirectRowSet.java | 1 +
20 files changed, 265 insertions(+), 161 deletions(-)
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/GenericCopierFactory.java
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/StraightCopier.java
copy
exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/svremover/{GenericSV2CopierTest.java
=> GenericSV2BatchCopierTest.java} (79%)