You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-641 This commit introduces templates for DataConvert and RowGroup methods.
This commit is contained in:
@ -953,6 +953,11 @@ bool Row::isNullValue(uint32_t colIndex) const
|
||||
|
||||
switch (len)
|
||||
{
|
||||
// MCOL-641 WIP
|
||||
case 16:
|
||||
return (*((int64_t*) &data[offsets[colIndex]]) == static_cast<int64_t>(joblist::BIGINTNULL));
|
||||
break;
|
||||
|
||||
case 1 :
|
||||
return (data[offsets[colIndex]] == joblist::TINYINTNULL);
|
||||
|
||||
|
Reference in New Issue
Block a user