Re: assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Konstantin Izmailov
Got it! Thanks!

Re: assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Andres Freund
Hi, On postgres mailing lists please don't write your reply at the top of a fully quoted email. We like the reply to be inline and trimmed to the necessary parts. On 2019-04-07 13:28:46 -0700, Konstantin Izmailov wrote: > Yes, Andres, I meant "pipelining", just couldn't choose correct word. Thank

Re: assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Konstantin Izmailov
Never mind, I found the link to the github in emails from the link. Thanks again! Konstantin On Sun, Apr 7, 2019 at 1:28 PM Konstantin Izmailov wrote: > Yes, Andres, I meant "pipelining", just couldn't choose correct word. > Thank you for the answer(s)! > > I also made changes in my own copy of

Re: assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Konstantin Izmailov
Yes, Andres, I meant "pipelining", just couldn't choose correct word. Thank you for the answer(s)! I also made changes in my own copy of libpq, and they work fine. I think the pipelining support is needed in libpq. Btw, how can I get the patch code? I want to compare your approach with mine. I cou

Re: assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Andres Freund
Hi, On 2019-04-07 20:57:56 +0200, Pavel Stehule wrote: > ne 7. 4. 2019 v 20:47 odesílatel Konstantin Izmailov > napsal: > > > Hi, > > I'm experimenting with Postgres 10 and protocol v3. I noticed that the > > Postgres allows executing multiple queries simultaneously (I basically > > commented ou

Re: assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Pavel Stehule
Hi ne 7. 4. 2019 v 20:47 odesílatel Konstantin Izmailov napsal: > Hi, > I'm experimenting with Postgres 10 and protocol v3. I noticed that the > Postgres allows executing multiple queries simultaneously (I basically > commented out a check that prevents sending another query in libpq while > pre

assembling PGresults from multiple simultaneous queries (libpq, singlerowmode)

2019-04-07 Thread Konstantin Izmailov
Hi, I'm experimenting with Postgres 10 and protocol v3. I noticed that the Postgres allows executing multiple queries simultaneously (I basically commented out a check that prevents sending another query in libpq while previous result(s) reading is not complete). Things appear like working, but I j