pitrou commented on issue #22875:
URL: https://github.com/apache/arrow/issues/22875#issuecomment-1830066621
I'm reviving this now that we start having canonical extension types.
This can probably be based on internal APIs provided by `ExtensionType`:
```c++
class ExtensionType {
protected:
// Validate the extension type itself (for use when ingesting non-trusted
extension metadata)
Status ValidateInternal();
// Validate an extension array of this type
Status ValidateArrayInternal(const ArrayData&, bool full_validation);
};
```
and then wired into the public validation routines.
--
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]