mirror of https://github.com/jackc/pgx.git
go fmt
parent
86099237bd
commit
d1a586ed64
11
conn.go
11
conn.go
|
@ -9,11 +9,11 @@ import (
|
|||
)
|
||||
|
||||
type conn struct {
|
||||
conn net.Conn // the underlying TCP or unix domain socket connection
|
||||
rowDesc rowDescription // current query rowDescription
|
||||
buf []byte // work buffer to avoid constant alloc and dealloc
|
||||
pid int32 // backend pid
|
||||
secretKey int32 // key to use to send a cancel query message to the server
|
||||
conn net.Conn // the underlying TCP or unix domain socket connection
|
||||
rowDesc rowDescription // current query rowDescription
|
||||
buf []byte // work buffer to avoid constant alloc and dealloc
|
||||
pid int32 // backend pid
|
||||
secretKey int32 // key to use to send a cancel query message to the server
|
||||
runtimeParams map[string]string // parameters that have been reported by the server
|
||||
}
|
||||
|
||||
|
@ -240,7 +240,6 @@ func (c *conn) rxDataRow(buf []byte) (row map[string]string, err error) {
|
|||
return
|
||||
}
|
||||
|
||||
|
||||
func (c *conn) rxCommandComplete(buf []byte) string {
|
||||
r := newMessageReader(buf)
|
||||
return r.readString()
|
||||
|
|
|
@ -28,7 +28,6 @@ func TestConnect(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
func TestQuery(t *testing.T) {
|
||||
conn, err := Connect(map[string]string{"socket": "/private/tmp/.s.PGSQL.5432"})
|
||||
if err != nil {
|
||||
|
@ -53,4 +52,4 @@ func TestQuery(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatal("Unable to close connection")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package pqx
|
||||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"bytes"
|
||||
"encoding/binary"
|
||||
)
|
||||
|
||||
type messageReader []byte
|
||||
|
|
12
messages.go
12
messages.go
|
@ -49,13 +49,13 @@ func (self *readyForQuery) String() string {
|
|||
type oid int32
|
||||
|
||||
type fieldDescription struct {
|
||||
name string
|
||||
table oid
|
||||
name string
|
||||
table oid
|
||||
attributeNumber int16
|
||||
dataType oid
|
||||
dataTypeSize int16
|
||||
modifier int32
|
||||
formatCode int16
|
||||
dataType oid
|
||||
dataTypeSize int16
|
||||
modifier int32
|
||||
formatCode int16
|
||||
}
|
||||
|
||||
type rowDescription struct {
|
||||
|
|
Loading…
Reference in New Issue