Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch for saving Table OID and Attribute Number #1117

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -1955,7 +1955,8 @@ func parseStatementRowDescribe(r *readBuf) (colNames []string, colTyps []fieldDe
colTyps = make([]fieldDesc, n)
for i := range colNames {
colNames[i] = r.string()
r.next(6)
colTyps[i].TableOID = r.oid()
colTyps[i].AtribNr = r.int16()
colTyps[i].OID = r.oid()
colTyps[i].Len = r.int16()
colTyps[i].Mod = r.int32()
Expand All @@ -1972,7 +1973,8 @@ func parsePortalRowDescribe(r *readBuf) rowsHeader {
colTyps := make([]fieldDesc, n)
for i := range colNames {
colNames[i] = r.string()
r.next(6)
colTyps[i].TableOID = r.oid()
colTyps[i].AtribNr = r.int16()
colTyps[i].OID = r.oid()
colTyps[i].Len = r.int16()
colTyps[i].Mod = r.int32()
Expand Down
8 changes: 8 additions & 0 deletions rows.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ import (
const headerSize = 4

type fieldDesc struct {

//If the field can be identified as a column of a specific table, the object ID of the table; otherwise zero.
calledit marked this conversation as resolved.
Show resolved Hide resolved
TableOID oid.Oid

//If the field can be identified as a column of a specific table, the attribute number of the column; otherwise zero.
calledit marked this conversation as resolved.
Show resolved Hide resolved
AtribNr int

// The object ID of the data type.
OID oid.Oid

// The data type size (see pg_type.typlen).
// Note that negative values denote variable-width types.
Len int
Expand Down