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 9388e1c DRILL-7417: Add user logged in/out event in info level logs
add a18e180 DRILL-1709: Add desc alias for describe command
add f2654ee DRILL-7177: Format Plugin for Excel Files
No new revisions were added by this update.
Summary of changes:
contrib/format-excel/README.md | 59 +++
contrib/{format-syslog => format-excel}/pom.xml | 42 +-
.../drill/exec/store/excel/ExcelBatchReader.java | 527 +++++++++++++++++++++
.../drill/exec/store/excel/ExcelFormatConfig.java | 108 +++++
.../drill/exec/store/excel/ExcelFormatPlugin.java | 142 ++++++
.../main/resources/bootstrap-format-plugins.json | 12 +-
.../src/main/resources/drill-module.conf | 1 +
.../drill/exec/store/excel/TestExcelFormat.java | 402 ++++++++++++++++
.../src/test/resources/excel/test_data.xlsx | Bin 0 -> 15459 bytes
.../native/client/src/protobuf/UserBitShared.pb.cc | 15 +-
.../native/client/src/protobuf/UserBitShared.pb.h | 5 +-
contrib/pom.xml | 1 +
distribution/pom.xml | 5 +
distribution/src/assemble/component.xml | 1 +
.../src/main/codegen/includes/parserImpls.ftl | 6 +-
.../java/org/apache/drill/TestSchemaCommands.java | 6 +
.../org/apache/drill/exec/sql/TestInfoSchema.java | 7 +
.../store/parquet/TestParquetFilterPushDown.java | 10 +-
pom.xml | 2 +
.../org/apache/drill/exec/proto/UserBitShared.java | 21 +-
protocol/src/main/protobuf/UserBitShared.proto | 1 +
21 files changed, 1334 insertions(+), 39 deletions(-)
create mode 100644 contrib/format-excel/README.md
copy contrib/{format-syslog => format-excel}/pom.xml (70%)
create mode 100644
contrib/format-excel/src/main/java/org/apache/drill/exec/store/excel/ExcelBatchReader.java
create mode 100644
contrib/format-excel/src/main/java/org/apache/drill/exec/store/excel/ExcelFormatConfig.java
create mode 100644
contrib/format-excel/src/main/java/org/apache/drill/exec/store/excel/ExcelFormatPlugin.java
copy contrib/{format-ltsv =>
format-excel}/src/main/resources/bootstrap-format-plugins.json (66%)
create mode 100644 contrib/format-excel/src/main/resources/drill-module.conf
create mode 100644
contrib/format-excel/src/test/java/org/apache/drill/exec/store/excel/TestExcelFormat.java
create mode 100644 contrib/format-excel/src/test/resources/excel/test_data.xlsx