| 944 | } |
| 945 | |
| 946 | Serializations 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 | |
| 957 | Serializations Block::getSerializations(const SerializationInfoByName & hints) const |
| 958 | { |
no test coverage detected