1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-10-28 19:54:55 +03:00

std prefix added (to other places) to avoid errors on some compilers

This commit is contained in:
Nedeljko Stefanovic
2025-07-31 17:56:10 +00:00
committed by Serguey Zefirov
parent e6d6bf103f
commit 81bf48bc40

View File

@@ -1235,7 +1235,7 @@ const uint8_t* getEmptyValueForType(const SystemCatalog::TypeAttributesStd& /*at
// QQ: perhaps not needed yet
class TypeHandlerEnum : public TypeHandler
{
const string& name() const override;
const std::string& name() const override;
code_t code() const override
{
return SystemCatalog::ENUM;
@@ -1292,7 +1292,7 @@ class TypeHandlerEnum : public TypeHandler
class TypeHandlerSet : public TypeHandler
{
const string& name() const override;
const std::string& name() const override;
code_t code() const override
{
return SystemCatalog::SET;
@@ -1350,7 +1350,7 @@ class TypeHandlerSet : public TypeHandler
// QQ: perhaps not needed yet
class TypeHandlerJson : public TypeHandler
{
const string& name() const override;
const std::string& name() const override;
code_t code() const override
{
return SystemCatalog::JSON;