Repository: orc
Updated Branches:
  refs/heads/master 5ce07a149 -> ca8c2b248


ORC-401: Fix incorrect quoting in specification.

Fixes #307

Signed-off-by: Owen O'Malley <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/orc/repo
Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/ca8c2b24
Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/ca8c2b24
Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/ca8c2b24

Branch: refs/heads/master
Commit: ca8c2b248b817c8b266d3dc7cd47aa012c197cdd
Parents: 5ce07a1
Author: xuchuanyin <[email protected]>
Authored: Thu Sep 13 16:10:46 2018 +0800
Committer: Owen O'Malley <[email protected]>
Committed: Thu Sep 13 09:49:20 2018 -0400

----------------------------------------------------------------------
 site/specification/ORCv0.md | 2 +-
 site/specification/ORCv1.md | 6 +++---
 site/specification/ORCv2.md | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/orc/blob/ca8c2b24/site/specification/ORCv0.md
----------------------------------------------------------------------
diff --git a/site/specification/ORCv0.md b/site/specification/ORCv0.md
index be51157..32ce14a 100644
--- a/site/specification/ORCv0.md
+++ b/site/specification/ORCv0.md
@@ -529,7 +529,7 @@ message Stream {
  // the length of each value for variable length data
  LENGTH = 2;
  // the dictionary blob
- DICTIONARY\_DATA = 3;
+ DICTIONARY_DATA = 3;
  // deprecated prior to Hive 0.11
  // It was used to store the number of instances of each value in the
  // dictionary

http://git-wip-us.apache.org/repos/asf/orc/blob/ca8c2b24/site/specification/ORCv1.md
----------------------------------------------------------------------
diff --git a/site/specification/ORCv1.md b/site/specification/ORCv1.md
index 47cba3e..fb90c83 100644
--- a/site/specification/ORCv1.md
+++ b/site/specification/ORCv1.md
@@ -674,7 +674,7 @@ message Stream {
  // the length of each value for variable length data
  LENGTH = 2;
  // the dictionary blob
- DICTIONARY\_DATA = 3;
+ DICTIONARY_DATA = 3;
  // deprecated prior to Hive 0.11
  // It was used to store the number of instances of each value in the
  // dictionary
@@ -708,9 +708,9 @@ message ColumnEncoding {
  // the encoding uses a dictionary of unique values using RLE v1
  DICTIONARY = 1;
  // the encoding is direct using RLE v2
- DIRECT\_V2 = 2;
+ DIRECT_V2 = 2;
  // the encoding is dictionary-based using RLE v2
- DICTIONARY\_V2 = 3;
+ DICTIONARY_V2 = 3;
  }
  required Kind kind = 1;
  // for dictionary encodings, record the size of the dictionary

http://git-wip-us.apache.org/repos/asf/orc/blob/ca8c2b24/site/specification/ORCv2.md
----------------------------------------------------------------------
diff --git a/site/specification/ORCv2.md b/site/specification/ORCv2.md
index 829507f..76ee571 100644
--- a/site/specification/ORCv2.md
+++ b/site/specification/ORCv2.md
@@ -694,7 +694,7 @@ message Stream {
  // the length of each value for variable length data
  LENGTH = 2;
  // the dictionary blob
- DICTIONARY\_DATA = 3;
+ DICTIONARY_DATA = 3;
  // deprecated prior to Hive 0.11
  // It was used to store the number of instances of each value in the
  // dictionary
@@ -728,9 +728,9 @@ message ColumnEncoding {
  // the encoding uses a dictionary of unique values using RLE v1
  DICTIONARY = 1;
  // the encoding is direct using RLE v2
- DIRECT\_V2 = 2;
+ DIRECT_V2 = 2;
  // the encoding is dictionary-based using RLE v2
- DICTIONARY\_V2 = 3;
+ DICTIONARY_V2 = 3;
  }
  required Kind kind = 1;
  // for dictionary encodings, record the size of the dictionary

Reply via email to