-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[Java] Support for Long memory addresses #43902
Comments
lidavidm
pushed a commit
that referenced
this issue
Sep 4, 2024
### Rationale for this change The usage of `Integer` instead of `Long` must be encouraged with the usage of memory sizing, indexing and addresses. ### What changes are included in this PR? This PR refactors the usage of `Integer` into `Long` along with utilities refactors. ### Are these changes tested? Existing test cases. ### Are there any user-facing changes? Yes, certain API calls may subject changes. * GitHub Issue: #43902 Authored-by: Vibhatha Lakmal Abeykoon <[email protected]> Signed-off-by: David Li <[email protected]>
Issue resolved by pull request 43903 |
zanmato1984
pushed a commit
to zanmato1984/arrow
that referenced
this issue
Sep 6, 2024
### Rationale for this change The usage of `Integer` instead of `Long` must be encouraged with the usage of memory sizing, indexing and addresses. ### What changes are included in this PR? This PR refactors the usage of `Integer` into `Long` along with utilities refactors. ### Are these changes tested? Existing test cases. ### Are there any user-facing changes? Yes, certain API calls may subject changes. * GitHub Issue: apache#43902 Authored-by: Vibhatha Lakmal Abeykoon <[email protected]> Signed-off-by: David Li <[email protected]>
khwilson
pushed a commit
to khwilson/arrow
that referenced
this issue
Sep 14, 2024
### Rationale for this change The usage of `Integer` instead of `Long` must be encouraged with the usage of memory sizing, indexing and addresses. ### What changes are included in this PR? This PR refactors the usage of `Integer` into `Long` along with utilities refactors. ### Are these changes tested? Existing test cases. ### Are there any user-facing changes? Yes, certain API calls may subject changes. * GitHub Issue: apache#43902 Authored-by: Vibhatha Lakmal Abeykoon <[email protected]> Signed-off-by: David Li <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the enhancement requested
In the memory-core module, still, there are the usage of
Integer
instead ofLong
in case of representing memory addresses, index, and sizes. This must be dealt with and favorlong
instead ofint
.Component(s)
Java
The text was updated successfully, but these errors were encountered: