timsaucer commented on PR #19079: URL: https://github.com/apache/datafusion/pull/19079#issuecomment-3630595574
> Hi @timsaucer , very cool work! I have a general question, do we need to somehow version the codecs? I am thinking that versions from producers/consumers could drift apart, and that could lead to unknown behavior? or is this guaranteed somewhere else? thanks! It's an interesting question. One thing that they can do right now is to check the major DF version using the `version()` function in each of these codecs. That would at least work for ensuring the ABI is the same. That wouldn't tell you if the codec being used on each side of the producer/consumer is the same though. I think getting that versioning will need to be implementation specific, but I also don't have a great use case right now. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
