| From: | Michael Paquier <michael(dot)paquier(at)gmail(dot)com> |
|---|---|
| To: | Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> |
| Cc: | pgsql-committers(at)postgresql(dot)org |
| Subject: | Re: pgsql: vacuumdb: enable parallel mode |
| Date: | 2015-03-21 11:08:15 |
| Message-ID: | CAB7nPqSTmgiAjAcOA=YemV6aYPFGb808r_erBGQ9jDKONiXoRg@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
On Sat, Jan 24, 2015 at 3:06 AM, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> wrote:
> vacuumdb: enable parallel mode
>
> This mode allows vacuumdb to open several server connections to vacuum
> or analyze several tables simultaneously.
Coverity is still complaining about this block of code where the
return code of PQsendQuery() is not checked:
if (async)
{
if (echo)
printf("%s\n", sql);
PQsendQuery(conn, sql);
}
Could it be possible to get that fixed soon? Alvaro, attached is the
patch that you wrote to fix this stuff.
Regards,
--
Michael
| Attachment | Content-Type | Size |
|---|---|---|
| vacuumdb-pqsendq.patch | text/x-patch | 691 bytes |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bruce Momjian | 2015-03-22 01:43:54 | pgsql: to_char(float4/8): zero pad to specified length |
| Previous Message | Heikki Linnakangas | 2015-03-21 09:59:59 | pgsql: Make pg_xlogdump MSVC build work more like others. |