You've already forked mariadb-columnstore-engine
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:
committed by
Serguey Zefirov
parent
e6d6bf103f
commit
81bf48bc40
@@ -1235,7 +1235,7 @@ const uint8_t* getEmptyValueForType(const SystemCatalog::TypeAttributesStd& /*at
|
|||||||
// QQ: perhaps not needed yet
|
// QQ: perhaps not needed yet
|
||||||
class TypeHandlerEnum : public TypeHandler
|
class TypeHandlerEnum : public TypeHandler
|
||||||
{
|
{
|
||||||
const string& name() const override;
|
const std::string& name() const override;
|
||||||
code_t code() const override
|
code_t code() const override
|
||||||
{
|
{
|
||||||
return SystemCatalog::ENUM;
|
return SystemCatalog::ENUM;
|
||||||
@@ -1292,7 +1292,7 @@ class TypeHandlerEnum : public TypeHandler
|
|||||||
|
|
||||||
class TypeHandlerSet : public TypeHandler
|
class TypeHandlerSet : public TypeHandler
|
||||||
{
|
{
|
||||||
const string& name() const override;
|
const std::string& name() const override;
|
||||||
code_t code() const override
|
code_t code() const override
|
||||||
{
|
{
|
||||||
return SystemCatalog::SET;
|
return SystemCatalog::SET;
|
||||||
@@ -1350,7 +1350,7 @@ class TypeHandlerSet : public TypeHandler
|
|||||||
// QQ: perhaps not needed yet
|
// QQ: perhaps not needed yet
|
||||||
class TypeHandlerJson : public TypeHandler
|
class TypeHandlerJson : public TypeHandler
|
||||||
{
|
{
|
||||||
const string& name() const override;
|
const std::string& name() const override;
|
||||||
code_t code() const override
|
code_t code() const override
|
||||||
{
|
{
|
||||||
return SystemCatalog::JSON;
|
return SystemCatalog::JSON;
|
||||||
|
|||||||
Reference in New Issue
Block a user