(n fmt.Stringer)
| 513 | } |
| 514 | |
| 515 | func newInvTableNameError(n fmt.Stringer) error { |
| 516 | return pgerror.NewWithDepthf(1, pgcode.InvalidName, |
| 517 | "invalid table name: %s", n) |
| 518 | } |
| 519 | |
| 520 | func newSourceNotFoundError(fmt string, args ...interface{}) error { |
| 521 | return pgerror.NewWithDepthf(1, pgcode.UndefinedTable, fmt, args...) |
no test coverage detected
searching dependent graphs…