-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Extract Codec & friends from Util into separate modules #5727
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, you'll want to merge the latest main and update how annotations is depended on since #5724 merged.
Also, looks like you need to apply spotless and fix some failing tests.
codec/base/src/main/java/io/deephaven/util/codec/ObjectCodec.java
Outdated
Show resolved
Hide resolved
codec/base/src/main/java/io/deephaven/util/codec/ObjectDecoder.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, couple small things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please be sure to run nightlies before merging. Codecs are fairly integral to Parquet support.
codec/builtin/src/test/java/io/deephaven/util/codec/LocalTimeCodecTest.java
Outdated
Show resolved
Hide resolved
codec/builtin/src/test/java/io/deephaven/util/codec/ZonedDateTimeCodecTest.java
Outdated
Show resolved
Hide resolved
This reverts commit 6b3d1fd.
This fixes #5726 by removing ObjectCodec and ObjectDecoder, their implementations, as well as CodecCache and it's exception from the Util module and into their own separate packages, codec-base, codec-builtin and codec-cache.