You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The maximum precision and scale for decimal types is 76, and yet we consume an entire usize to store this information. This is most pronounced on BasicDecimal where the precision and scale take up more memory than the actual value data 😱
Describe the solution you'd like
I would like to propose using u8 for these instead of usize
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The maximum precision and scale for decimal types is 76, and yet we consume an entire
usize
to store this information. This is most pronounced onBasicDecimal
where the precision and scale take up more memory than the actual value data 😱Describe the solution you'd like
I would like to propose using
u8
for these instead ofusize
Describe alternatives you've considered
Additional context
Thoughts @liukun4515
The text was updated successfully, but these errors were encountered: