You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
MCOL-641 Add support for functions (Part 2).
This commit is contained in:
committed by
Roman Nozdrin
parent
bd0d5af123
commit
6aea838360
@@ -58,7 +58,7 @@ namespace utils
|
||||
ptr[1] = BINARYEMPTYVALUEHIGH;
|
||||
}
|
||||
|
||||
inline void setWideDecimalNullValue(int128_t* val)
|
||||
inline void setWideDecimalNullValue(int128_t* val)
|
||||
{
|
||||
uint64_t* ptr = reinterpret_cast<uint64_t*>(val);
|
||||
ptr[0] = BINARYNULLVALUELOW;
|
||||
@@ -72,7 +72,7 @@ namespace utils
|
||||
ptr[1] = BINARYEMPTYVALUEHIGH;
|
||||
}
|
||||
|
||||
inline void int128Max(int128_t& val)
|
||||
inline void int128Max(int128_t& val)
|
||||
{
|
||||
uint64_t* ptr = reinterpret_cast<uint64_t*>(&val);
|
||||
ptr[0] = 0xFFFFFFFFFFFFFFFF;
|
||||
|
||||
Reference in New Issue
Block a user