mirror of https://github.com/jackc/pgx.git
Adds docs for Oid type.
parent
99bfc154f0
commit
074bcd7139
|
@ -53,6 +53,10 @@ func (s *startupMessage) Bytes() (buf []byte) {
|
||||||
return buf
|
return buf
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Oid (Object Identifier Type) is, according to https://www.postgresql.org/docs/current/static/datatype-oid.html,
|
||||||
|
// used internally by PostgreSQL as a primary key for various system tables. It is currently implemented
|
||||||
|
// as an unsigned four-byte integer. Its definition can be found in src/include/postgres_ext.h
|
||||||
|
// in the PostgreSQL sources.
|
||||||
type Oid uint32
|
type Oid uint32
|
||||||
|
|
||||||
type FieldDescription struct {
|
type FieldDescription struct {
|
||||||
|
|
Loading…
Reference in New Issue