thiru-mg commented on code in PR #3468: URL: https://github.com/apache/avro/pull/3468#discussion_r2297118314
########## lang/c++/include/avro/DataFile.hh: ########## @@ -54,6 +54,11 @@ const int SyncSize = 16; */ typedef std::array<uint8_t, SyncSize> DataFileSync; +/** + * The metadata for the data file. + */ +typedef std::map<std::string, std::vector<uint8_t>> Metadata; Review Comment: For completeness, it'll be great if we copy the documentation for metadata from Avro specification. That is, what is expected of the contents and the predefined keys supported by the spec. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
