github.com/jackc/pgx/v5/pgproto3.ParameterDescription.ParameterOIDs (field)
11 uses
github.com/jackc/pgx/v5/pgproto3 (current package)
parameter_description.go#L14: ParameterOIDs []uint32
parameter_description.go#L34: *dst = ParameterDescription{ParameterOIDs: make([]uint32, parameterCount)}
parameter_description.go#L37: dst.ParameterOIDs[i] = binary.BigEndian.Uint32(buf.Next(4))
parameter_description.go#L47: if len(src.ParameterOIDs) > math.MaxUint16 {
parameter_description.go#L50: dst = pgio.AppendUint16(dst, uint16(len(src.ParameterOIDs)))
parameter_description.go#L51: for _, oid := range src.ParameterOIDs {
parameter_description.go#L65: ParameterOIDs: src.ParameterOIDs,
github.com/jackc/pgx/v5/pgconn
pgconn.go#L942: psd.ParamOIDs = make([]uint32, len(msg.ParameterOIDs))
pgconn.go#L943: copy(psd.ParamOIDs, msg.ParameterOIDs)
pgconn.go#L2573: psd.ParamOIDs = make([]uint32, len(msg.ParameterOIDs))
pgconn.go#L2574: copy(psd.ParamOIDs, msg.ParameterOIDs)
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)