You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
Fixes of bugs from ASAN warnings, part one (#2796)
This commit is contained in:
@ -164,6 +164,27 @@ const int128_t mcs_pow_10_128[20] = {
|
||||
100000000000000000000000000000000000000_xxl,
|
||||
};
|
||||
|
||||
const long long columnstore_precision[19] = {0,
|
||||
9,
|
||||
99,
|
||||
999,
|
||||
9999,
|
||||
99999,
|
||||
999999,
|
||||
9999999,
|
||||
99999999,
|
||||
999999999,
|
||||
9999999999LL,
|
||||
99999999999LL,
|
||||
999999999999LL,
|
||||
9999999999999LL,
|
||||
99999999999999LL,
|
||||
999999999999999LL,
|
||||
9999999999999999LL,
|
||||
99999999999999999LL,
|
||||
999999999999999999LL};
|
||||
|
||||
|
||||
const int128_t ConversionRangeMaxValue[20] = {9999999999999999999_xxl,
|
||||
99999999999999999999_xxl,
|
||||
999999999999999999999_xxl,
|
||||
|
Reference in New Issue
Block a user