Use i64 as the only internal integer type #5621
Replies: 3 comments 2 replies
-
Beta Was this translation helpful? Give feedback.
-
I do agree It shall make life much easier if we just use Yet some queries may work much slower if we use
|
Beta Was this translation helpful? Give feedback.
-
If the total length of group by keys in our current implementation exceeds 64 bytes, we will use Of course, I'm not sure how many keys our users usually group by, but it shouldn't be too many? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, we have supported plenty of integer types, e.g., UInt8, Int8, UInt16, etc. It helps reduce the memory and storage footprint on small integer types but also comes with disadvantages:
Maybe we can cut them down to
i64
, ori64
andu64
.Reference:
snowflake only supports the decimal type
firebolt supports int & bigint type
Beta Was this translation helpful? Give feedback.
All reactions