This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new d8a1ce61e ORC-1753: Use Avro 1.12.0 in `bench` module
d8a1ce61e is described below
commit d8a1ce61e0eaaddd0e69689f0352b24fe2dd5ec5
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]>
(cherry picked from commit e43ce791316e9da82235ba05b6036ddcddf0ec5c)
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 ebcd396ff..9571888f2 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.1</junit.version>