github.com/jackc/pgx/v5/pgconn.FieldDescription.Name (field)

12 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		pgconn.go#L855: 	Name                 string
		pgconn.go#L874: 		dst[i].Name = string(rd.Fields[i].Name)

	github.com/jackc/pgx/v5
		rows.go#L283: 			err = ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err}
		rows.go#L382: 			return ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err}
		rows.go#L557: 		(*rs)[string(rows.FieldDescriptions()[i].Name)] = values[i]
		rows.go#L740: 				fldDescs[i].Name,
		rows.go#L757: 		return fldDescs[0].Name
		rows.go#L762: 		totalSize += len(d.Name)
		rows.go#L766: 	b.WriteString(fldDescs[0].Name)
		rows.go#L769: 		b.WriteString(d.Name)
		rows.go#L842: 			if strings.EqualFold(strings.ReplaceAll(desc.Name, "_", ""), field) {
		rows.go#L846: 			if desc.Name == field {