TODO [LQ_DEADLINE]
| 22 | return res; |
| 23 | } |
| 24 | |
| 25 | AllExpEncodedCol RowgroupEncoder::encode_all(const col_pt& col, const ColDescription& col_description) const { |
| 26 | const auto type = col_description.type; |
| 27 | if (type == DataType::FALLBACK) { return {}; } |
| 28 | |
| 29 | // TODO [LQ_DEADLINE] |
| 30 | AllExpEncodedCol result = std::visit( // |
| 31 | overloaded { |
| 32 | [](const auto&) -> AllExpEncodedCol { throw std::runtime_error("NOT SUPPORTED"); }, |
no test coverage detected