updated build system
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
This commit is contained in:
@ -101,10 +101,10 @@ public:
|
||||
overloaded{
|
||||
[](const data_type &value) -> data_type { return value; },
|
||||
[](auto &&) -> data_type {
|
||||
throw utils::error::create_exception({
|
||||
function_name,
|
||||
"data type not supported",
|
||||
});
|
||||
throw utils::error::create_exception(
|
||||
function_name, {
|
||||
"data type not supported",
|
||||
});
|
||||
},
|
||||
},
|
||||
value_);
|
||||
@ -138,11 +138,11 @@ public:
|
||||
} break;
|
||||
|
||||
default:
|
||||
throw utils::error::create_exception({
|
||||
function_name,
|
||||
"column type not implemented",
|
||||
std::to_string(column_type),
|
||||
});
|
||||
throw utils::error::create_exception(function_name,
|
||||
{
|
||||
"column type not implemented",
|
||||
std::to_string(column_type),
|
||||
});
|
||||
}
|
||||
|
||||
columns_[name] = db_column{col, name, value};
|
||||
|
Reference in New Issue
Block a user