diff --git a/conn.go b/conn.go index 2a8e2930..9b7cef65 100644 --- a/conn.go +++ b/conn.go @@ -647,6 +647,8 @@ func (c *Conn) processContextFreeMsg(t byte, r *msgReader) (err error) { return c.rxErrorResponse(r) case noticeResponse: return nil + case emptyQueryResponse: + return nil case notificationResponse: c.rxNotificationResponse(r) return nil diff --git a/messages.go b/messages.go index aaa915c6..b5025213 100644 --- a/messages.go +++ b/messages.go @@ -21,6 +21,7 @@ const ( parameterDescription = 't' bindComplete = '2' notificationResponse = 'A' + emptyQueryResponse = 'I' noData = 'n' closeComplete = '3' flush = 'H'