| 1587 | } |
| 1588 | |
| 1589 | absl::Status NonExistentKeyColumn(absl::string_view object_type, |
| 1590 | absl::string_view object_name, |
| 1591 | absl::string_view key_column) { |
| 1592 | return absl::Status( |
| 1593 | absl::StatusCode::kFailedPrecondition, |
| 1594 | absl::Substitute("$0 $1 references nonexistent key column $2.", |
| 1595 | object_type, object_name, key_column)); |
| 1596 | } |
| 1597 | |
| 1598 | absl::Status DuplicateColumnName(absl::string_view column_name) { |
| 1599 | return absl::Status( |
no outgoing calls
no test coverage detected