pgx-vs-pq
Jack Christensen 2013-04-19 15:48:45 -05:00
parent fa4c70907c
commit 310c7f5fd8
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -16,7 +16,7 @@ const (
dataRow = 'D'
commandComplete = 'C'
errorResponse = 'E'
noticeResponse = 'N'
noticeResponse = 'N'
)
type startupMessage struct {