Include missed changes
This commit is contained in:
@@ -15,6 +15,7 @@ type Backend struct {
|
||||
// Frontend message flyweights
|
||||
bind Bind
|
||||
_close Close
|
||||
copyFail CopyFail
|
||||
describe Describe
|
||||
execute Execute
|
||||
flush Flush
|
||||
@@ -82,6 +83,8 @@ func (b *Backend) Receive() (FrontendMessage, error) {
|
||||
msg = &b.describe
|
||||
case 'E':
|
||||
msg = &b.execute
|
||||
case 'f':
|
||||
msg = &b.copyFail
|
||||
case 'H':
|
||||
msg = &b.flush
|
||||
case 'P':
|
||||
|
||||
@@ -23,6 +23,7 @@ type Frontend struct {
|
||||
copyInResponse CopyInResponse
|
||||
copyOutResponse CopyOutResponse
|
||||
copyDone CopyDone
|
||||
copyFail CopyFail
|
||||
dataRow DataRow
|
||||
emptyQueryResponse EmptyQueryResponse
|
||||
errorResponse ErrorResponse
|
||||
@@ -83,6 +84,8 @@ func (b *Frontend) Receive() (BackendMessage, error) {
|
||||
msg = &b.dataRow
|
||||
case 'E':
|
||||
msg = &b.errorResponse
|
||||
case 'f':
|
||||
msg = &b.copyFail
|
||||
case 'G':
|
||||
msg = &b.copyInResponse
|
||||
case 'H':
|
||||
|
||||
Reference in New Issue
Block a user