(rel, col string)
| 32 | } |
| 33 | |
| 34 | func ColumnExists(rel, col string) *Error { |
| 35 | return &Error{ |
| 36 | Err: Exists, |
| 37 | Code: "42701", |
| 38 | Message: fmt.Sprintf("column %q of relation %q", col, rel), |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | func ColumnNotFound(rel, col string) *Error { |
| 43 | return &Error{ |
no outgoing calls