mirror of https://github.com/jackc/pgx.git
go fmt
parent
fa4c70907c
commit
310c7f5fd8
2
conn.go
2
conn.go
|
@ -295,7 +295,7 @@ func (c *Connection) Execute(sql string) (commandTag string, err error) {
|
|||
case rowDescription:
|
||||
case dataRow:
|
||||
case commandComplete:
|
||||
commandTag = r.readString()
|
||||
commandTag = r.readString()
|
||||
default:
|
||||
if err = c.processContextFreeMsg(t, r); err != nil {
|
||||
return
|
||||
|
|
|
@ -16,7 +16,7 @@ const (
|
|||
dataRow = 'D'
|
||||
commandComplete = 'C'
|
||||
errorResponse = 'E'
|
||||
noticeResponse = 'N'
|
||||
noticeResponse = 'N'
|
||||
)
|
||||
|
||||
type startupMessage struct {
|
||||
|
|
Loading…
Reference in New Issue