| 231 | } |
| 232 | |
| 233 | std::unique_ptr<IDataType::SubstreamData> IDataType::getDynamicSubcolumnData( |
| 234 | std::string_view /*subcolumn_name*/, |
| 235 | const SubstreamData & /*data*/, |
| 236 | size_t /*initial_array_level*/, |
| 237 | bool throw_if_null) const |
| 238 | { |
| 239 | if (throw_if_null) |
| 240 | throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method getDynamicSubcolumnData is not implemented for type {}", getName()); |
| 241 | return nullptr; |
| 242 | } |
| 243 | |
| 244 | bool IDataType::hasSubcolumn(std::string_view subcolumn_name) const |
| 245 | { |
no test coverage detected