| 202 | |
| 203 | template <> |
| 204 | void serializeOne<TypeKind::VARCHAR>( |
| 205 | const BaseVector& vector, |
| 206 | vector_size_t index, |
| 207 | ByteOutputStream& stream, |
| 208 | const ContainerRowSerdeOptions& /*options*/) { |
| 209 | auto string = vector.asUnchecked<SimpleVector<StringView>>()->valueAt(index); |
| 210 | stream.appendOne<int32_t>(string.size()); |
| 211 | stream.appendStringView(string); |
| 212 | } |
| 213 | |
| 214 | template <> |
| 215 | void serializeOne<TypeKind::VARBINARY>( |
nothing calls this directly
no test coverage detected