type github.com/go-pg/pg/v10/internal.PGError

10 uses

	github.com/go-pg/pg/v10/internal (current package)
		error.go#L24: type PGError struct {
		error.go#L28: func NewPGError(m map[byte]string) PGError {
		error.go#L29: 	return PGError{
		error.go#L34: func (err PGError) Field(k byte) string {
		error.go#L38: func (err PGError) IntegrityViolation() bool {
		error.go#L47: func (err PGError) Error() string {

	github.com/go-pg/pg/v10
		error.go#L36: var _ Error = (*internal.PGError)(nil)

	github.com/go-pg/pg/v10/orm
		count_estimate.go#L69: 			if pgerr, ok := err.(internal.PGError); ok && pgerr.Field('C') == "42883" {
		count_estimate.go#L73: 					pgerr, ok := err.(internal.PGError)
		query.go#L1092: 			if pgErr, ok := err.(internal.PGError); ok {