private void processBindResponse() {
processParseResponse(); // same logic
}
private void processQueryResponse() {
ProtocolMessage message = currentInMessage.getMessage();
switch (message.getType()) {
case CopyInResponse:
if (inProgress == null)
inProgress = new ResultSet();
inProgress.setStatus(ResultStatus.PGRES_COPY_IN);
lastResultSet.add(inProgress);