This is an automated email from the ASF dual-hosted git repository. snuyanzin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-connector-hive.git
commit 141964e6a6adc6c052e5b98253a27ad2cdbccc18 Author: Wenchao Wu <[email protected]> AuthorDate: Tue Jul 2 10:22:08 2024 +0800 [hotfix][parquet] Fix dependences and variable name problems in FLINK-35702 (#25004) --- flink-connector-hive/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flink-connector-hive/pom.xml b/flink-connector-hive/pom.xml index e3c97102..219a9ac4 100644 --- a/flink-connector-hive/pom.xml +++ b/flink-connector-hive/pom.xml @@ -1359,6 +1359,11 @@ under the License. <relocation> <pattern>org.apache.flink.runtime.util</pattern> <shadedPattern>org.apache.flink.hive.shaded.util</shadedPattern> + <excludes> + <exclude>org.apache.flink.runtime.util.IntArrayList</exclude> + <exclude>org.apache.flink.runtime.util.BooleanArrayList</exclude> + <exclude>org.apache.flink.runtime.util.LongArrayList</exclude> + </excludes> </relocation> <relocation> <pattern>org.apache.flink.formats.parquet</pattern>
