This is an automated email from the ASF dual-hosted git repository.
dzamo pushed a change to branch 1.20
in repository https://gitbox.apache.org/repos/asf/drill.git
from d8ab5d7453 [maven-release-plugin] prepare for next development
iteration
new 64c4f25a19 DRILL-8275: Prevent the JDBC Client from creating spurious
paths in Zookeeper (#2617)
new e5ecc5dc97 More unit tests covering the remaining column types
affected by DRILL-8273. (#2620)
new 7165163d8b DRILL-8278: The period character '.' is broken in SQL LIKE
patterns (#2621)
new e6f67d2541 DRILL-8280: Cannot ANALYZE files containing non-ASCII
column names (#2625)
new 86f7eab40b DRILL-8281: Info schema LIKE with ESCAPE push down bug.
(#2627)
new 0d0708989e DRILL-8282: Bump Hadoop-Common Version to 3.2.4 (CVE)
(#2630)
new fda97be16b [MINOR UPDATE]: Disable lgtm build (#2631)
new 2a389176c6 DRILL-8283: Add a configurable recursive file listing size
limit (#2632)
new 3a23665775 DRILL-8282: Update hadoop.dll and winutils.exe to 3.2.4.
(#2635)
The 9 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:
.github/workflows/ci.yml | 2 +-
.lgtm.yml | 22 --
.../store/hdf5/writers/HDF5ByteDataWriter.java | 4 +-
.../store/hdf5/writers/HDF5DoubleDataWriter.java | 4 +-
.../store/hdf5/writers/HDF5FloatDataWriter.java | 4 +-
.../exec/store/hdf5/writers/HDF5IntDataWriter.java | 4 +-
.../store/hdf5/writers/HDF5LongDataWriter.java | 4 +-
.../store/hdf5/writers/HDF5SmallIntDataWriter.java | 4 +-
.../hdf5/writers/HDF5TimestampDataWriter.java | 4 +-
.../exec/store/mapr/TableFormatPluginConfig.java | 2 +-
contrib/storage-hbase/pom.xml | 12 +
contrib/storage-hive/core/pom.xml | 26 +-
.../apache/drill/exec/udfs/CryptoFunctions.java | 4 +-
distribution/pom.xml | 4 +
.../src/main/resources/core-site-example.xml | 16 +-
.../src/main/resources/winutils/hadoop.dll | Bin 88576 -> 88576 bytes
.../src/main/resources/winutils/winutils.exe | Bin 118784 -> 118784 bytes
drill-yarn/pom.xml | 4 +
exec/java-exec/pom.xml | 48 ++++
.../drill/exec/coord/zk/ZKClusterCoordinator.java | 36 ++-
.../expr/fn/impl/CollectListMapsAggFunction.java | 2 +-
.../apache/drill/exec/expr/fn/impl/RegexpUtil.java | 2 +-
.../drill/exec/expr/fn/impl/SchemaFunctions.java | 9 +-
.../java/org/apache/drill/exec/record/DeadBuf.java | 2 +-
.../org/apache/drill/exec/server/Drillbit.java | 3 +-
.../drill/exec/store/ischema/InfoSchemaFilter.java | 26 +-
.../org/apache/drill/exec/util/FileSystemUtil.java | 71 +++++-
.../drill/exec/client/DrillClientStateTest.java | 43 ++++
.../drill/exec/expr/fn/impl/TestSqlPatterns.java | 9 +-
.../resultSet/project/TestTupleProjection.java | 34 ++-
.../org/apache/drill/exec/sql/TestInfoSchema.java | 270 ++++++++++++---------
.../drill/exec/sql/TestMetastoreCommands.java | 193 +++++++++------
.../apache/drill/exec/util/FileSystemUtilTest.java | 18 ++
exec/rpc/pom.xml | 10 +
exec/vector/pom.xml | 10 +
.../exec/record/metadata/AbstractPropertied.java | 2 +-
.../drill/exec/util/JsonStringArrayList.java | 2 +-
.../apache/drill/exec/util/JsonStringHashMap.java | 2 +-
logical/pom.xml | 8 +
metastore/iceberg-metastore/pom.xml | 12 +
metastore/metastore-api/pom.xml | 8 +
pom.xml | 91 ++++++-
42 files changed, 750 insertions(+), 281 deletions(-)
delete mode 100644 .lgtm.yml
mode change 100644 => 100755
distribution/src/main/resources/winutils/hadoop.dll
mode change 100644 => 100755
distribution/src/main/resources/winutils/winutils.exe
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/client/DrillClientStateTest.java