Uh oh!
There was an error while loading. Please reload this page.
Make UUID implementation available for downstream projects - #824
Conversation
lidavidm
left a comment
There was a problem hiding this comment.
The UUID type here was never meant to be a real type, it was implemented solely for testing things and doesn't match the UUID canonical extension type. If there's a desire for a UUID type, please open a new issue and implement the canonical extension type instead.
bodduv
commented
Aug 23, 2025
@lidavidm thank you for the comment! I can open an issue and work on this. I have a couple of questions:
|
lidavidm
commented
Aug 24, 2025
It's possible they are the same, but at the very least the extension name here is wrong, and I would prefer it be clearly documented and in its own namespace, and for everything to be reviewed with that in mind instead of just moving test code into a feature that has to be supported long-term. |
What's Changed
This PR moves the UUID implementation from
teststo appropriate locations so downstream projects can use them. This allows to avoid downstream projects to have their own custom implementation for a well-understood data type. A few modifications, such as the useArrowBuf, are proposed.Closes#823 .