paleolimbot opened a new pull request, #445: URL: https://github.com/apache/arrow-nanoarrow/pull/445
This PR adds support for creating dictionary and list types: ```python import nanoarrow as na na.list_of(na.int32()) #> Schema(LIST, value_type=Schema(INT32, name='item')) na.dictionary(na.int32(), na.string()) #> Schema(DICTIONARY, index_type=Schema(INT32), value_type=Schema(STRING), dictionary_ordered=False) ``` Before, creating these types (or associated arrays from buffer) was not possible. -- 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]
