(rel string)
| 56 | } |
| 57 | |
| 58 | func RelationNotFound(rel string) *Error { |
| 59 | return &Error{ |
| 60 | Err: NotFound, |
| 61 | Code: "42P01", |
| 62 | Message: fmt.Sprintf("relation %q", rel), |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | func SchemaExists(name string) *Error { |
| 67 | return &Error{ |
no outgoing calls