You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2018/05/07 18:51:19 UTC

[arrow] branch master updated: ARROW-2547: Fix off-by-one in `List>` example

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0cb992a  ARROW-2547: Fix off-by-one in `List<List<byte>>` example
0cb992a is described below

commit 0cb992a5454b4aec257ad9125232c05093eab635
Author: Frank Wessels <fw...@xs4all.nl>
AuthorDate: Mon May 7 20:51:11 2018 +0200

    ARROW-2547: Fix off-by-one in `List<List<byte>>` example
    
    Nested Offsets buffer occupies bytes 0-27, not 0-28.
    
    Author: Frank Wessels <fw...@xs4all.nl>
    
    Closes #2000 from fwessels/fwessels-patch-2 and squashes the following commits:
    
    d44794da <Frank Wessels> `List<List<byte>>` example
---
 format/Layout.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/format/Layout.md b/format/Layout.md
index 60e802d..c48e511 100644
--- a/format/Layout.md
+++ b/format/Layout.md
@@ -342,7 +342,7 @@ will be be represented as follows:
 
   * Offsets buffer (int32)
 
-    | Bytes 0-28           | Bytes 29-63 |
+    | Bytes 0-27           | Bytes 28-63 |
     |----------------------|-------------|
     | 0, 2, 4, 7, 7, 8, 10 | unspecified |
 

-- 
To stop receiving notification emails like this one, please contact
uwe@apache.org.