-
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
refactor: make utility classes UnboxTransform and ToChunkTypeTransform public #6338
Conversation
Util/function/build.gradle
Outdated
@@ -5,6 +5,8 @@ plugins { | |||
|
|||
dependencies { | |||
api project(':qst-type') | |||
api project(':engine-query-constants') | |||
api project(':engine-time') |
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.
I don't like this dependency on engine-time, given it is a bit more sprawling. Does ToChunkTypeTransform
living in engine-time
work for you?
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.
I think that should work, yes
@@ -1,13 +1,9 @@ | |||
// | |||
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending | |||
// | |||
package io.deephaven.kafka; | |||
package io.deephaven.protobuf; |
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.
This is not really an appropriate package for it, at least publicly (I also claim that io.deephaven.kafka
is not appropriate, but in that case it was internal only).
That said, I'm okay putting it into extensions-protobuf, but using a more appropriate package; io.deephaven.function
; this sort of implies that we can continue to refactor it later to a more appropriate place if necessary.
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.
Done
No description provided.