libpgtcl COPY out problem - why PQgetlineAsync() ?

Поиск
Список
Период
Сортировка
От ljb
Тема libpgtcl COPY out problem - why PQgetlineAsync() ?
Дата
Msg-id b6anq2$1vkr$1@news.hub.org
обсуждение исходный текст
Ответы Re: libpgtcl COPY out problem - why PQgetlineAsync() ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-interfaces
While working to get Pgaccess up with my pure-Tcl interface (pgin.tcl,
available on gborg), I found that COPY TO STDOUT is not working with
libpgtcl. Or, it is working so slowly it might as well not work. Or, it
works for small data sets but fails for large ones. This happens with both
the bundled PostgreSQL-7.3.2 libpgtcl and the beta libpgtcl on gborg.  For
example, with Pgaccess, I can import records at about 5,000 per second, but
when I export records it goes at about 20 per second.

It looks to me like the problem is in PgInputProc() which reads from the
PostgreSQL connection during COPY TO STDOUT. Why is this doing non-blocking
reads using PQgetlineAsync()? If there isn't a complete line of data
available from the backend, this will return 0, which Tcl will see as EOF
since the channel is in non-blocking mode. Am I missing something?



В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Rudy Lippan
Дата:
Сообщение: Re: Release of DBD-pg 1.22
Следующее
От: Tom Lane
Дата:
Сообщение: Re: libpgtcl COPY out problem - why PQgetlineAsync() ?