github.com/jackc/pgx/v5.ScanArgError.ColumnIndex (field)

5 uses

	github.com/jackc/pgx/v5 (current package)
		rows.go#L283: 			err = ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err}
		rows.go#L344: 	ColumnIndex int
		rows.go#L351: 		return fmt.Sprintf("can't scan into dest[%d]: %v", e.ColumnIndex, e.Err)
		rows.go#L354: 	return fmt.Sprintf("can't scan into dest[%d] (col: %s): %v", e.ColumnIndex, e.FieldName, e.Err)
		rows.go#L382: 			return ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err}