(fmt string, args ...interface{})
| 518 | } |
| 519 | |
| 520 | func newSourceNotFoundError(fmt string, args ...interface{}) error { |
| 521 | return pgerror.NewWithDepthf(1, pgcode.UndefinedTable, fmt, args...) |
| 522 | } |
| 523 | |
| 524 | // CommonLookupFlags is the common set of flags for the various accessor interfaces. |
| 525 | type CommonLookupFlags struct { |
no test coverage detected
searching dependent graphs…