github.com/ydb-platform/ydb-go-sdk/v3@v3.57.0/internal/query/scanner/errors.go (about) 1 package scanner 2 3 import ( 4 "errors" 5 ) 6 7 var ( 8 errColumnsNotFoundInRow = errors.New("some columns not found in row") 9 errFieldsNotFoundInStruct = errors.New("some fields not found in struct") 10 errIncompatibleColumnsAndDestinations = errors.New("incompatible columns and destinations") 11 errDstTypeIsNotAPointer = errors.New("dst type is not a pointer") 12 errDstTypeIsNotAPointerToStruct = errors.New("dst type is not a pointer to struct") 13 )