MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getDynamicSubcolumnData

Method getDynamicSubcolumnData

src/DataTypes/IDataType.cpp:233–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231}
232
233std::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
244bool IDataType::hasSubcolumn(std::string_view subcolumn_name) const
245{

Callers 1

getSubcolumnDataMethod · 0.45

Calls 2

ExceptionClass · 0.50
getNameFunction · 0.50

Tested by

no test coverage detected