(rel string)
| 48 | } |
| 49 | |
| 50 | func RelationExists(rel string) *Error { |
| 51 | return &Error{ |
| 52 | Err: Exists, |
| 53 | Code: "42P07", |
| 54 | Message: fmt.Sprintf("relation %q", rel), |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | func RelationNotFound(rel string) *Error { |
| 59 | return &Error{ |
no outgoing calls