You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/03/12 14:30:12 UTC

[arrow] branch master updated: ARROW-2022: [Format] Add metadata to message

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

wesm 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 6686cd3  ARROW-2022: [Format] Add metadata to message
6686cd3 is described below

commit 6686cd320d954beddf6501aca22ce1a639648724
Author: Micah Kornfield <em...@gmail.com>
AuthorDate: Tue Mar 12 09:29:53 2019 -0500

    ARROW-2022: [Format] Add metadata to message
    
    This is the simplest possible option, but I might be missing something.
    
    Author: Micah Kornfield <em...@gmail.com>
    Author: emkornfield <em...@gmail.com>
    
    Closes #3812 from emkornfield/ARROW-2022 and squashes the following commits:
    
    0473a7c0e <emkornfield> rename metadata to custom_metadata
    87c78f7ce <Micah Kornfield> ARROW-2022:  Add metadata to message
---
 format/Message.fbs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/format/Message.fbs b/format/Message.fbs
index 10adaaa..2b3a120 100644
--- a/format/Message.fbs
+++ b/format/Message.fbs
@@ -95,6 +95,7 @@ table Message {
   version: org.apache.arrow.flatbuf.MetadataVersion;
   header: MessageHeader;
   bodyLength: long;
+  custom_metadata: [ KeyValue ];
 }
 
 root_type Message;