added type setter to column

This commit is contained in:
2023-11-22 22:59:40 +01:00
parent 44adc81ce1
commit 376beded43
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -68,6 +68,11 @@ const std::string &column::ref_column() const
return ref_column_;
}
void column::type(data_type_t type)
{
type_ = type;
}
void column::alias(const std::string &as)
{
alias_ = as;