github.com/lib/pq.GenericArray.A (field)

8 uses

	github.com/lib/pq (current package)
		array.go#L272: type GenericArray struct{ A interface{} }
		array.go#L311: 	dpv := reflect.ValueOf(a.A)
		array.go#L314: 		return fmt.Errorf("pq: destination %T is not a pointer to array or slice", a.A)
		array.go#L316: 		return fmt.Errorf("pq: destination %T is nil", a.A)
		array.go#L324: 		return fmt.Errorf("pq: destination %T is not a pointer to array or slice", a.A)
		array.go#L397: 	if a.A == nil {
		array.go#L401: 	rv := reflect.ValueOf(a.A)
		array.go#L410: 		return nil, fmt.Errorf("pq: Unable to convert %T to array", a.A)