| 273 | } |
| 274 | |
| 275 | std::vector<std::string> SDKCodec::GetColNames() { |
| 276 | std::vector<std::string> cols; |
| 277 | for (const auto& column_desc : schema_) { |
| 278 | cols.push_back(column_desc.name()); |
| 279 | } |
| 280 | return cols; |
| 281 | } |
| 282 | |
| 283 | int SDKCodec::CombinePartitionKey(const std::vector<std::string>& raw_data, |
| 284 | std::string* key) { |
no outgoing calls
no test coverage detected