| 256 | } |
| 257 | |
| 258 | static bool DecodeRow(const Schema& schema, // NOLINT |
| 259 | const ::fedb::base::Slice& value, |
| 260 | std::vector<std::string>& value_vec) { // NOLINT |
| 261 | fedb::codec::RowView rv( |
| 262 | schema, reinterpret_cast<int8_t*>(const_cast<char*>(value.data())), |
| 263 | value.size()); |
| 264 | return DecodeRow(schema, rv, false, 0, schema.size(), &value_vec); |
| 265 | } |
| 266 | |
| 267 | static bool DecodeRow(const Schema& schema, const int8_t* data, int32_t size, bool replace_empty_str, |
| 268 | int start, int len, std::vector<std::string>& values) { // NOLINT |
nothing calls this directly
no test coverage detected