-
Notifications
You must be signed in to change notification settings - Fork 559
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
[client-v2] primitive reading into pojo #1826
Conversation
@@ -91,6 +89,10 @@ public class QueryTests extends BaseIntegrationTest { | |||
|
|||
private boolean usePreallocatedBuffers = false; | |||
|
|||
static { | |||
// System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "DEBUG"); |
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.
Lets remove it
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.
ok. this is only for current development. but will move into env settings on local
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.
Do we support POJO with types of Long, Integer, Short, and more class |
We do but with 1-to-1 match. But with primitives it should be easier to handle. |
Quality Gate failedFailed conditions |
Summary
Current implementation reads all values into objects even it can be done using primitive types. It was done to simplify code, but it may be not good for memory consumption.
Current PR:
Checklist
Delete items not relevant to your PR: