| 246 | } |
| 247 | |
| 248 | int SDKCodec::EncodeRow(const std::vector<std::string>& raw_data, |
| 249 | std::string* row) { |
| 250 | auto ret = RowCodec::EncodeRow(raw_data, schema_, last_ver_, *row); |
| 251 | return ret.code; |
| 252 | } |
| 253 | |
| 254 | int SDKCodec::DecodeRow(const std::string& row, std::vector<std::string>* value) { |
| 255 | if (format_version_ == 1) { |
no outgoing calls
no test coverage detected