paleolimbot opened a new issue, #6: URL: https://github.com/apache/arrow-nanoarrow/issues/6
Now that we have growable buffers we can implement a more natural way to build key/value metadata. It might just take one function: ``` ArrowMetadataBuild(struct ArrowBuffer* buffer, const char* key, const char* value); ``` Sending it to a schema is a tiny bit awkward without a helper: ``` ArrowSchemaSetMetadata(schema, (const char*)buffer.data); ArrowBufferReset(buffer); ``` (or maybe there's a more natural way to do this with better names) -- 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]
