added assignment from value, conversion to database_type and appropriate tests

This commit is contained in:
2026-04-05 12:48:13 +02:00
parent 9e4660c4ee
commit 1806e2670c
7 changed files with 170 additions and 5 deletions
+4
View File
@@ -62,6 +62,10 @@ int field::index() const {
return index_;
}
utils::value field::value() const {
return value_;
}
std::ostream &operator<<(std::ostream &out, const field &col) {
out << col.str();
return out;