This is an automated email from the ASF dual-hosted git repository.

ayushsaxena pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 411d3a49cb7 HIVE-29126: Add missing equal sign when using JVM option 
(#6017)
411d3a49cb7 is described below

commit 411d3a49cb7a2720907cf0342f5f77f53dbfed3d
Author: Jaeho Yoo <[email protected]>
AuthorDate: Sun Aug 10 16:10:10 2025 +0900

    HIVE-29126: Add missing equal sign when using JVM option (#6017)
---
 common/src/java/org/apache/hadoop/hive/common/JavaVersionUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/common/src/java/org/apache/hadoop/hive/common/JavaVersionUtils.java 
b/common/src/java/org/apache/hadoop/hive/common/JavaVersionUtils.java
index 624a8c3028a..c1584310d0c 100644
--- a/common/src/java/org/apache/hadoop/hive/common/JavaVersionUtils.java
+++ b/common/src/java/org/apache/hadoop/hive/common/JavaVersionUtils.java
@@ -44,7 +44,7 @@ public static String getAddOpensFlagsIfNeeded() {
           " --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED" +
           " --add-opens=java.base/java.lang=ALL-UNNAMED" +
           " --add-opens=java.base/java.io=ALL-UNNAMED" +
-          " --add-opens java.base/java.lang=ALL-UNNAMED" +
+          " --add-opens=java.base/java.lang=ALL-UNNAMED" +
           " --add-opens=java.base/java.lang.invoke=ALL-UNNAMED" +
           " --add-opens=java.base/java.lang.reflect=ALL-UNNAMED" +
           " --add-opens=java.base/java.math=ALL-UNNAMED" +

Reply via email to