github.com/jackc/pgx/v5/pgproto3.DataRow.Values (field)
20 uses
github.com/jackc/pgx/v5/pgproto3 (current package)
data_row.go#L14: Values [][]byte
data_row.go#L33: if cap(dst.Values) < fieldCount || cap(dst.Values)-fieldCount > 32 {
data_row.go#L35: dst.Values = make([][]byte, fieldCount, newCap)
data_row.go#L37: dst.Values = dst.Values[:fieldCount]
data_row.go#L50: dst.Values[i] = nil
data_row.go#L56: dst.Values[i] = src[rp : rp+valueLen : rp+valueLen]
data_row.go#L68: if len(src.Values) > math.MaxUint16 {
data_row.go#L71: dst = pgio.AppendUint16(dst, uint16(len(src.Values)))
data_row.go#L72: for _, v := range src.Values {
data_row.go#L87: formattedValues := make([]map[string]string, len(src.Values))
data_row.go#L88: for i, v := range src.Values {
data_row.go#L131: dst.Values = make([][]byte, len(msg.Values))
data_row.go#L134: dst.Values[n], err = getValueFromJSON(parameter)
trace.go#L238: fmt.Fprintf(t.buf, "\t %d", len(msg.Values))
trace.go#L239: for _, v := range msg.Values {
github.com/jackc/pgx/v5/pgconn
pgconn.go#L1705: rr.rowValues = msg.Values
pgconn.go#L1777: rr.preloadRowValues(msg.Values)
pgconn.go#L2661: rr.preloadRowValues(msg.Values)