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

Method getSerializations

src/Core/Block.cpp:946–955  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

944}
945
946Serializations Block::getSerializations() const
947{
948 Serializations res;
949 res.reserve(data.size());
950
951 for (const auto & column : data)
952 res.push_back(column.type->getDefaultSerialization());
953
954 return res;
955}
956
957Serializations Block::getSerializations(const SerializationInfoByName & hints) const
958{

Calls 8

reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45
findMethod · 0.45
endMethod · 0.45
getSerializationMethod · 0.45
getSettingsMethod · 0.45

Tested by

no test coverage detected