From: "Darko Prenosil" <Darko(dot)Prenosil(at)finteh(dot)hr>
To: "Bruce Momjian" <pgman(at)candle(dot)pha(dot)pa(dot)us>, "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "pgsql interfaces" <pgsql-interfaces(at)postgresql(dot)org>
Subject:
Date: 2001-10-03 17:13:07
Message-ID: 007e01c14c2e$d1e69240$ef00000a@darko
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hi guys,
Sorry for bothering you, but we ran into a situation...
Story goes like this:
We wanted to use non-blocking PQSendQuery to send a large query which consists of many SELECTs. Our pglib interface sent just first 8192 bytes and returned EOF. Whole query was more than 64k.

We took a brief look through the source and here is what confuses us:

These two chunks of code are from fe-misc.c

pqPutBytes(const char *s, size_t nbytes, PGconn *conn){
........
while (nbytes > avail)
{
memcpy(conn->outBuffer + conn->outCount, s, avail);
conn->outCount += avail;
s += avail;
nbytes -= avail;
if (pqFlush(conn))
return EOF;
avail = conn->outBufSize;
}
...........
}

*************************************
pqFlush(PGconn *conn) {
............
#ifdef USE_SSL
/* can't do anything for our SSL users yet */
if (conn->ssl == NULL)
{
#endif
if (pqIsnonblocking(conn))
{
/* shift the contents of the buffer */
memmove(conn->outBuffer, ptr, len);
conn->outCount = len;
return EOF; <- Why it returns EOF after just shifting the buffer ???
}
#ifdef USE_SSL
}
#endif
...............
}

When we corected the code to look like this:

#ifdef USE_SSL
/* can't do anything for our SSL users yet */
if (conn->ssl == NULL)
{
if (pqIsnonblocking(conn))
{
/* shift the contents of the buffer */
memmove(conn->outBuffer, ptr, len);
conn->outCount = len;
return EOF;
}
}
#endif

we succeed to send queries bigger than 8k. We tried to figure what is happening, and saw that there
is few pqWait calls, but our queries are send correctly. Is there some fact that we are missing ?
Can You please explain ???
Maybe it is important to say that we are compiling library for WIN32.

Thanks.
Darko

Responses

  • Re: at 2001-10-03 17:41:34 from Tom Lane

Browse pgsql-interfaces by date

  From Date Subject
Next Message Tom Lane 2001-10-03 17:41:34 Re:
Previous Message Dave Page 2001-10-03 12:56:27 Re: select in a LIKE?