bugfix - contrib/pgbench - Mailing list pgsql-patches

From ITAGAKI Takahiro
Subject bugfix - contrib/pgbench
Date
Msg-id 20050523125141.3AE9.ITAGAKI.TAKAHIRO@lab.ntt.co.jp
Whole thread Raw
Responses Re: bugfix - contrib/pgbench  (Neil Conway <neilc@samurai.com>)
List pgsql-patches
DDLs was used instead of DDLAFTERs by mistake.


*** pgbench.c    Tue Nov  9 15:09:31 2004
--- pgbench.fix.c    Mon May 23 12:50:01 2005
*************** init(void)
*** 622,628 ****
      for (i = 0; i < (sizeof(DDLAFTERs) / sizeof(char *)); i++)
      {
          res = PQexec(con, DDLAFTERs[i]);
!         if (strncmp(DDLs[i], "drop", 4) && PQresultStatus(res) != PGRES_COMMAND_OK)
          {
              fprintf(stderr, "%s", PQerrorMessage(con));
              exit(1);
--- 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);

---
ITAGAKI Takahiro <itagaki.takahiro@lab.ntt.co.jp>
NTT Cyber Space Laboratories
Nippon Telegraph and Telephone Corporation.


pgsql-patches by date:

Previous
From: "Andrew Dunstan"
Date:
Subject: Re: bug fix - plperl %_SHARED misspelled
Next
From: Bruce Momjian
Date:
Subject: Re: Updated kerberos service name patch