1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

Lot of files updated

This commit is contained in:
Nedeljko Stefanovic
2025-07-11 12:09:55 +00:00
parent 54800de255
commit a00b06b61d
28 changed files with 45 additions and 3 deletions

View File

@@ -879,6 +879,7 @@ void Row::setToNull(uint32_t colIndex)
case CalpontSystemCatalog::UTINYINT: data[offsets[colIndex]] = joblist::UTINYINTNULL; break;
case CalpontSystemCatalog::ENUM:
case CalpontSystemCatalog::USMALLINT:
*((uint16_t*)&data[offsets[colIndex]]) = joblist::USMALLINTNULL;
break;
@@ -1047,6 +1048,7 @@ bool Row::isNullValue(uint32_t colIndex) const
case CalpontSystemCatalog::UTINYINT: return (data[offsets[colIndex]] == joblist::UTINYINTNULL);
case CalpontSystemCatalog::ENUM:
case CalpontSystemCatalog::USMALLINT:
return (*((uint16_t*)&data[offsets[colIndex]]) == joblist::USMALLINTNULL);