You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/11/08 08:09:05 UTC

[kudu] branch master updated: [docs] Adjust the order of the attributes in cfile footer

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 811eab5  [docs] Adjust the order of the attributes in cfile footer
811eab5 is described below

commit 811eab514883390a729ed0f3f991df4a1a7fea67
Author: lingbin <li...@gmail.com>
AuthorDate: Thu Nov 7 22:07:48 2019 +0800

    [docs] Adjust the order of the attributes in cfile footer
    
    The correct order should be:
    1) checksum 2) message 3) magic 4) length
    
    Change-Id: I0692133ddaccba2b07affb4abbe0b64d6ed30c5f
    Reviewed-on: http://gerrit.cloudera.org:8080/14656
    Tested-by: Kudu Jenkins
    Reviewed-by: Grant Henke <gr...@apache.org>
---
 docs/design-docs/cfile.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/design-docs/cfile.md b/docs/design-docs/cfile.md
index a8e2292..bc600f6 100644
--- a/docs/design-docs/cfile.md
+++ b/docs/design-docs/cfile.md
@@ -64,8 +64,8 @@ without padding.
 | field | width (bytes) | notes |
 | --- | --- | --- |
 | checksum | 4 | optional CRC-32 checksum of message, magic, and length |
-| magic | 8 | [see below](#versioning) |
 | message | variable | encoded [`CFileFooterPB`][cfile.proto] Protobuf message |
+| magic | 8 | [see below](#versioning) |
 | length | 4 | unsigned 32-bit length of the preceding Protobuf message |
 
 ### Versioning