| 815 | } |
| 816 | |
| 817 | absl::Status CannotCreateIndexOnColumn(absl::string_view index_name, |
| 818 | absl::string_view column_name, |
| 819 | absl::string_view column_type) { |
| 820 | return absl::Status( |
| 821 | absl::StatusCode::kFailedPrecondition, |
| 822 | absl::Substitute("Cannot reference $2 $1 in the creation of index $0.", |
| 823 | index_name, column_name, column_type)); |
| 824 | } |
| 825 | |
| 826 | absl::Status InvalidPrimaryKeyColumnType(absl::string_view column_name, |
| 827 | absl::string_view type) { |
no outgoing calls
no test coverage detected