| 372 | return SetBinaryCopy(col_name, val); |
| 373 | } |
| 374 | Status KuduPartialRow::SetString(const Slice& col_name, const Slice& val) { |
| 375 | return SetStringCopy(col_name, val); |
| 376 | } |
| 377 | Status KuduPartialRow::SetVarchar(const Slice& col_name, const Slice& val) { |
| 378 | int col_idx; |
| 379 | RETURN_NOT_OK(schema_->FindColumn(col_name, &col_idx)); |
no outgoing calls