This is an automated email from the ASF dual-hosted git repository.
arina pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from 849e2b6 DRILL-7405: Avoiding download of TPC-H data
new a13608b DRILL-6096: Provide mechanism to configure text writer
configuration
new ed3ad76 DRILL-7403: Validate batch checks, vector integretity in unit
tests
new ad75bbd DRILL-7414: EVF incorrectly sets buffer writer index after
rollover
The 3 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:
exec/java-exec/pom.xml | 2 +-
.../templates/StringOutputRecordWriter.java | 12 +-
.../java/org/apache/drill/exec/ExecConstants.java | 7 +
.../impl/scan/columns/ColumnsArrayParser.java | 13 +-
.../physical/impl/validate/BatchValidator.java | 430 ++++++++++++++++-----
.../validate/IteratorValidatorBatchIterator.java | 38 +-
.../resultSet/impl/RepeatedVectorState.java | 10 +-
.../physical/resultSet/impl/SingleVectorState.java | 14 +-
.../exec/server/options/SystemOptionManager.java | 2 +
.../exec/store/easy/text/TextFormatPlugin.java | 53 ++-
.../store/easy/text/reader/BaseFieldOutput.java | 2 +-
.../store/easy/text/reader/FieldVarCharOutput.java | 13 +-
.../exec/store/easy/text/reader/HeaderBuilder.java | 26 +-
.../easy/text/reader/RepeatedVarCharOutput.java | 21 +-
.../exec/store/easy/text/reader/TextInput.java | 13 +-
.../exec/store/easy/text/reader/TextOutput.java | 54 ++-
.../store/easy/text/reader/TextParsingContext.java | 119 ++++--
.../easy/text/reader/TextParsingSettings.java | 2 +-
.../exec/store/easy/text/reader/TextReader.java | 31 +-
.../store/easy/text/writer/TextRecordWriter.java | 121 +++---
.../apache/drill/exec/vector/VectorValidator.java | 6 +-
.../java-exec/src/main/resources/drill-module.conf | 2 +
.../drill/exec/physical/impl/MockRecordBatch.java | 84 ++--
.../physical/impl/validate/TestBatchValidator.java | 118 +++---
.../exec/physical/impl/writer/TestTextWriter.java | 264 +++++++++++++
.../impl/TestResultSetLoaderOverflow.java | 334 +++++++++-------
.../text/compliant/TestCsvTableProperties.java | 76 ++--
.../java/org/apache/drill/test/ClusterFixture.java | 94 +++--
.../accessor/writer/OffsetVectorWriterImpl.java | 7 +-
29 files changed, 1334 insertions(+), 634 deletions(-)
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/writer/TestTextWriter.java