This is an automated email from the ASF dual-hosted git repository.
ihuzenko pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from 5df4495 DRILL-7327: Log Regex Plugin Won't Recognize Schema
new 22947ad DRILL-7084: ResultSet getObject method throws not implemented
exception if the column type is NULL
new fc3d921 DRILL-7331: Drill Iceberg Metastore metadata expiration
new df48eb8 DRILL-7334: Update Iceberg Metastore Parquet write mode
new 7bd442d DRILL-7335: Fix error when reading csv file with headers only
The 4 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:
.../apache/drill/exec/server/DrillbitContext.java | 1 +
.../exec/store/easy/text/reader/TextInput.java | 10 +-
.../easy/text/compliant/TestCsvWithHeaders.java | 62 +++--
.../apache/drill/jdbc/impl/DrillResultSetImpl.java | 24 +-
.../org/apache/drill/jdbc/DrillResultSetTest.java | 109 ++++----
.../src/test/resources/testGetObjectNull.parquet | Bin 0 -> 379 bytes
metastore/iceberg-metastore/README.md | 44 ++--
metastore/iceberg-metastore/pom.xml | 2 +-
.../drill/metastore/iceberg/IcebergMetastore.java | 29 ++-
.../drill/metastore/iceberg/MetastoreContext.java | 8 +
.../iceberg/components/tables/IcebergTables.java | 10 +-
.../iceberg/config/IcebergConfigConstants.java | 5 +
.../iceberg/operate/ExpirationHandler.java | 276 +++++++++++++++++++++
.../metastore/iceberg/operate/IcebergModify.java | 3 +
.../metastore/iceberg/write/ParquetFileWriter.java | 7 +-
.../src/main/resources/drill-metastore-module.conf | 65 ++---
.../iceberg/components/tables/TestTableKey.java | 2 +-
.../tables/TestTablesOperationTransformer.java | 5 +-
.../iceberg/operate/TestExpirationHandler.java | 143 +++++++++++
.../iceberg/write/TestParquetFileWriter.java | 8 +-
.../java/org/apache/drill/metastore/Metastore.java | 2 +-
.../apache/drill/metastore/MetastoreRegistry.java | 9 +-
.../main/resources/drill-metastore-default.conf | 2 +-
23 files changed, 659 insertions(+), 167 deletions(-)
create mode 100644 exec/jdbc/src/test/resources/testGetObjectNull.parquet
create mode 100644
metastore/iceberg-metastore/src/main/java/org/apache/drill/metastore/iceberg/operate/ExpirationHandler.java
create mode 100644
metastore/iceberg-metastore/src/test/java/org/apache/drill/metastore/iceberg/operate/TestExpirationHandler.java