1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Update. The class Row has to be updated to contain ColType info abu columns instead of ColDataType.

This commit is contained in:
Nedeljko Stefanovic
2025-07-04 10:44:54 +00:00
parent 5a9eada4d7
commit 5e8c95a27e
9 changed files with 30 additions and 11 deletions

View File

@ -1190,14 +1190,13 @@ class TypeHandlerEnum : public TypeHandler
}
boost::any getNullValueForType(const SystemCatalog::TypeAttributesStd& /*attr*/) const override
{
// TODO: How to communicate with write engine?
return {};
}
boost::any convertFromString(const SystemCatalog::TypeAttributesStd& /*colType*/,
const ConvertFromStringParam& /*prm*/, const std::string& /*str*/,
bool& /*pushWarning*/) const override;
const uint8_t* getEmptyValueForType(const SystemCatalog::TypeAttributesStd& /*attr*/) const override
const uint8_t* getEmptyValueForType(const SystemCatalog::TypeAttributesStd& /*attr*/) const override
{
idbassert(0);
return nullptr;