We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb871c commit d2b21aaCopy full SHA for d2b21aa
lib/native/index.js
@@ -194,9 +194,13 @@ var clientBuilder = function(config) {
194
}
195
});
196
connection.on('_copyInResponse', function () {
197
+ //connection is ready to accept chunks
198
+ //start to send data from stream
199
connection._activeQuery.streamData(connection);
200
201
connection.on('_copyData', function (chunk) {
202
+ //recieve chunk from connection
203
+ //move it to stream
204
connection._activeQuery.handleCopyFromChunk(chunk);
205
206
return connection;
0 commit comments