From: | ITAGAKI Takahiro <itagaki(dot)takahiro(at)lab(dot)ntt(dot)co(dot)jp> |
---|---|
To: | Neil Conway <neilc(at)samurai(dot)com> |
Cc: | pgsql-patches(at)postgresql(dot)org |
Subject: | Re: bugfix - contrib/pgbench |
Date: | 2005-05-23 07:43:44 |
Message-ID: | 20050523163814.3B00.ITAGAKI.TAKAHIRO@lab.ntt.co.jp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-patches |
Neil Conway <neilc(at)samurai(dot)com> wrote:
> > --- 622,628 ----
> > for (i = 0; i < (sizeof(DDLAFTERs) / sizeof(char *)); i++)
> > {
> > res = PQexec(con, DDLAFTERs[i]);
> > ! if (strncmp(DDLAFTERs[i], "drop", 4) && PQresultStatus(res) != PGRES_COMMAND_OK)
> > {
> > fprintf(stderr, "%s", PQerrorMessage(con));
> > exit(1);
>
> None of the DDL in DDLAFTERs begins with "drop", so ISTM the right fix
> is to just remove the strncmp().
I certainly think so.
But this code seems to be an idiom,
"Check the result, but drop commands may be fail".
Drop commands might be added to DDLAFTERs some time, so we may leave it.
---
ITAGAKI Takahiro <itagaki(dot)takahiro(at)lab(dot)ntt(dot)co(dot)jp>
NTT Cyber Space Laboratories
Nippon Telegraph and Telephone Corporation.
From | Date | Subject | |
---|---|---|---|
Next Message | Mahmoud Taghizadeh | 2005-05-23 07:47:21 | modified farsi faq in html and txt version |
Previous Message | Neil Conway | 2005-05-23 05:37:53 | Re: bugfix - contrib/pgbench |