| 1093 | } |
| 1094 | |
| 1095 | void checkTypeEncoding(std::string_view encoding, const TypePtr& type) { |
| 1096 | const auto kindEncoding = typeToEncodingName(type); |
| 1097 | BOLT_USER_CHECK( |
| 1098 | encoding == kindEncoding, |
| 1099 | "Serialized encoding is not compatible with requested type: {}. Expected {}. Got {}.", |
| 1100 | type->kindName(), |
| 1101 | kindEncoding, |
| 1102 | encoding); |
| 1103 | } |
| 1104 | |
| 1105 | void readColumns( |
| 1106 | ByteInputStream* source, |
no test coverage detected