[KYUUBI #6815] fix jdbc oracle engine NUMBER(20,0) type problem#7463
[KYUUBI #6815] fix jdbc oracle engine NUMBER(20,0) type problem#7463ylq5126 wants to merge 3 commits into
Conversation
|
Thanks for the fix. Before diving into the code, could you please tidy up the PR a bit? Since we already have a PR template, it’s best to follow it. Also, if you used any AI tools to assist with development, could you please perform an initial review following the guidelines in #7452? |
ok, changed |
|
I noticed the existing Oracle tests are failing after this change. Oracle Would it make sense to add regression tests for the boundary cases, e.g. |
Why are the changes needed?
when oracle column type is NUMBER(20,0), and value is 530924057810571264, query tips Integer cast exception
This PR adds Column precision length check,only length <= 9 can be cast to Integer.
How was this patch tested?
Deployed and Tested in our environment. use kyuubi 1.11.1 jdbc engine proxy oracle, data can be queried normally.
Was this patch authored or co-authored using generative AI tooling?
No.