From a4e055f7121e5d49c2dd82bc328d15454c50d4af Mon Sep 17 00:00:00 2001 From: Nic Ferrier Date: Sat, 30 Dec 2017 01:51:48 +0000 Subject: [PATCH] #112 attempted fix --- src/pq/connection.cr | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/pq/connection.cr b/src/pq/connection.cr index cebc5f22..017a6984 100644 --- a/src/pq/connection.cr +++ b/src/pq/connection.cr @@ -267,6 +267,15 @@ module PQ def read_next_row_start type = soc.read_char + + if type == 'N' + frame = read_one_frame type + async_frames = handle_async_frames frame + if async_frames + type = soc.read_char + end + end + if type == 'D' true else