(rel, col string)
| 40 | } |
| 41 | |
| 42 | func ColumnNotFound(rel, col string) *Error { |
| 43 | return &Error{ |
| 44 | Err: NotFound, |
| 45 | Code: "42703", |
| 46 | Message: fmt.Sprintf("column %q of relation %q", col, rel), |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func RelationExists(rel string) *Error { |
| 51 | return &Error{ |
no outgoing calls