You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2021/08/30 22:14:52 UTC

[orc] branch main updated: ORC-977: Update webpages and TestVectorOrcFile.java to be more neutral

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

omalley 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 005ce54  ORC-977: Update webpages and TestVectorOrcFile.java to be more neutral
005ce54 is described below

commit 005ce54635718d8255a499855cd25ac8f41cbbbb
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Sun Aug 29 21:50:20 2021 -0700

    ORC-977: Update webpages and TestVectorOrcFile.java to be more neutral
---
 c++/Doxyfile                                             |  2 +-
 java/core/src/test/org/apache/orc/TestVectorOrcFile.java | 12 ++++++------
 site/_docs/building.md                                   |  2 +-
 site/_posts/2017-05-16-new-committer.md                  |  2 +-
 site/_posts/2019-01-10-add-dongjoon.md                   |  2 +-
 site/_posts/2020-11-16-add-panagiotis.md                 |  2 +-
 site/_posts/2021-02-08-panagiotis-pmc.md                 |  2 +-
 site/_posts/2021-04-13-add-william.md                    |  2 +-
 8 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/c++/Doxyfile b/c++/Doxyfile
index 3d8ea4d..ac1f5a8 100644
--- a/c++/Doxyfile
+++ b/c++/Doxyfile
@@ -1176,7 +1176,7 @@ CHM_FILE               =
 HHC_LOCATION           =
 
 # The GENERATE_CHI flag controls if a separate .chi index file is generated (
-# YES) or that it should be included in the master .chm file ( NO).
+# YES) or that it should be included in the .chm file ( NO).
 # The default value is: NO.
 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
 
diff --git a/java/core/src/test/org/apache/orc/TestVectorOrcFile.java b/java/core/src/test/org/apache/orc/TestVectorOrcFile.java
index e838b79..76d86cf 100644
--- a/java/core/src/test/org/apache/orc/TestVectorOrcFile.java
+++ b/java/core/src/test/org/apache/orc/TestVectorOrcFile.java
@@ -4649,11 +4649,11 @@ public class TestVectorOrcFile {
             "bin:binary>");
 
     InMemoryKeystore allKeys = new InMemoryKeystore();
-    byte[][] masterKeys = new byte[6][];
-    for(int k=0; k < masterKeys.length; ++k) {
-      masterKeys[k] = new byte[algorithm.keyLength()];
-      random.nextBytes(masterKeys[k]);
-      allKeys.addKey("key_" + k, algorithm, masterKeys[k]);
+    byte[][] keys = new byte[6][];
+    for(int k=0; k < keys.length; ++k) {
+      keys[k] = new byte[algorithm.keyLength()];
+      random.nextBytes(keys[k]);
+      allKeys.addKey("key_" + k, algorithm, keys[k]);
     }
 
     Writer writer = OrcFile.createWriter(testFilePath,
@@ -4707,7 +4707,7 @@ public class TestVectorOrcFile {
     // try enabling each key by itself
     for(int c=0; c < 6; ++c) {
       InMemoryKeystore single = new InMemoryKeystore();
-      single.addKey("key_" + c, algorithm, masterKeys[c]);
+      single.addKey("key_" + c, algorithm, keys[c]);
       reader = OrcFile.createReader(testFilePath,
           OrcFile.readerOptions(conf).setKeyProvider(single));
       boolean[] hasData = new boolean[6];
diff --git a/site/_docs/building.md b/site/_docs/building.md
index 52af619..4e8cb9f 100644
--- a/site/_docs/building.md
+++ b/site/_docs/building.md
@@ -9,7 +9,7 @@ dockerUrl: https://github.com/apache/orc/blob/main/docker
 
 The C++ library is supported on the following operating systems:
 
-* CentOS 6 or 7
+* CentOS 7 or 8
 * Debian 8 or 9
 * MacOS 10.10 to 10.13
 * Ubuntu 18.04 or 20.04
diff --git a/site/_posts/2017-05-16-new-committer.md b/site/_posts/2017-05-16-new-committer.md
index 1d2202f..57fa762 100644
--- a/site/_posts/2017-05-16-new-committer.md
+++ b/site/_posts/2017-05-16-new-committer.md
@@ -6,6 +6,6 @@ author: omalley
 categories: [team]
 ---
 
-The ORC PMC is happy to add Deepak Majeti as an ORC committer for his
+The ORC PMC is happy to add Deepak Majeti as an ORC committer for the
 work on the C++ ORC reader including both contributions and reviews of
 other's patches. Thank you for your work on ORC, Deepak!
\ No newline at end of file
diff --git a/site/_posts/2019-01-10-add-dongjoon.md b/site/_posts/2019-01-10-add-dongjoon.md
index 8271c85..00ee277 100644
--- a/site/_posts/2019-01-10-add-dongjoon.md
+++ b/site/_posts/2019-01-10-add-dongjoon.md
@@ -6,7 +6,7 @@ author: omalley
 categories: [team]
 ---
 
-The ORC PMC is happy to add Dongjoon Hyun as an ORC committer for his
+The ORC PMC is happy to add Dongjoon Hyun as an ORC committer for the
 work on improving ORC's integration to Spark.
 
 Thank you for your work on ORC, Dongjoon!
\ No newline at end of file
diff --git a/site/_posts/2020-11-16-add-panagiotis.md b/site/_posts/2020-11-16-add-panagiotis.md
index 56fba45..335c9b3 100644
--- a/site/_posts/2020-11-16-add-panagiotis.md
+++ b/site/_posts/2020-11-16-add-panagiotis.md
@@ -6,7 +6,7 @@ author: dongjoon
 categories: [team]
 ---
 
-The ORC PMC is happy to add Panagiotis Garefalakis as an ORC committer for his
+The ORC PMC is happy to add Panagiotis Garefalakis as an ORC committer for the
 work on improving ORC's integration to Apache Hive.
 
 Thank you for your work on ORC, Panagiotis!
diff --git a/site/_posts/2021-02-08-panagiotis-pmc.md b/site/_posts/2021-02-08-panagiotis-pmc.md
index 553d0df..3dd6edc 100644
--- a/site/_posts/2021-02-08-panagiotis-pmc.md
+++ b/site/_posts/2021-02-08-panagiotis-pmc.md
@@ -10,5 +10,5 @@ On behalf of the Apache ORC Project Management Committee (PMC), it gives
 me great pleasure to announce that Panagiotis Garefalakis has joined the PMC. Panagiotis
 has radically improved the integration between Hive and ORC.
 
-Please join me in welcoming Dongjoon to the ORC PMC!
+Please join me in welcoming Panagiotis to the ORC PMC!
 
diff --git a/site/_posts/2021-04-13-add-william.md b/site/_posts/2021-04-13-add-william.md
index d1e45bc..82a40f0 100644
--- a/site/_posts/2021-04-13-add-william.md
+++ b/site/_posts/2021-04-13-add-william.md
@@ -6,7 +6,7 @@ author: dongjoon
 categories: [team]
 ---
 
-The ORC PMC is happy to add William Hyun as an ORC committer for his
+The ORC PMC is happy to add William Hyun as an ORC committer for the
 work on improving ORC's code quality and integration to Apache Spark and Apache Iceberg.
 
 Thank you for your work on ORC, William!