if (status != Status.Suspended) {
if (shouldStreamBind(parsingContext, parameterValues)) {
StreamingByteBuf bindMsg = new StreamingByteBuf(protocol.channel, STREAM_MESSAGE_SIZE);
protocol.writeBind(bindMsg, portalName, statementName, parameterTypes, parameterValues, resultFieldFormats, true);
bindMsg.flush();
}
else {
protocol.writeBind(msg, portalName, statementName, parameterTypes, parameterValues, resultFieldFormats, true);