This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new e43ce7913 ORC-1753: Use Avro 1.12.0 in `bench` module
e43ce7913 is described below
commit e43ce791316e9da82235ba05b6036ddcddf0ec5c
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Aug 5 15:09:02 2024 -0700
ORC-1753: Use Avro 1.12.0 in `bench` module
### What changes were proposed in this pull request?
This PR aims to use Apache Avro 1.12.0 in `bench` module.
### Why are the changes needed?
Apache Avro 1.12.0 is the latest feature release.
Since we are fixing this area recently, we had better keep it up-to-date in
order to avoid re-validation in the future.
- https://github.com/apache/orc/pull/1930
- https://github.com/apache/orc/pull/1995
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #1996 from dongjoon-hyun/ORC-1753.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
java/bench/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/bench/pom.xml b/java/bench/pom.xml
index 1d6b33364..9c7178f79 100644
--- a/java/bench/pom.xml
+++ b/java/bench/pom.xml
@@ -33,7 +33,7 @@
</modules>
<properties>
- <avro.version>1.11.3</avro.version>
+ <avro.version>1.12.0</avro.version>
<hive.version>4.0.0</hive.version>
<jmh.version>1.37</jmh.version>
<junit.version>5.10.3</junit.version>