1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Renaming cleanup, no pgindent yet.

This commit is contained in:
Bruce Momjian
1998-09-01 03:29:17 +00:00
parent 2aa080fc93
commit af74855a60
329 changed files with 4380 additions and 4388 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.63 1998/08/29 02:09:24 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.64 1998/09/01 03:28:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -650,7 +650,7 @@ PQisBusy(PGconn *conn)
parseInput(conn);
/* PQgetResult will return immediately in all states except BUSY. */
return (conn->asyncStatus == PGASYNC_BUSY);
return conn->asyncStatus == PGASYNC_BUSY;
}
@ -1410,7 +1410,7 @@ PQcmdTuples(PGresult *res)
}
p++;
if (*(res->cmdStatus) != 'I') /* UPDATE/DELETE */
return (p);
return p;
while (*p != ' ' && *p)
p++; /* INSERT: skip oid */
if (*p == 0)
@ -1421,7 +1421,7 @@ PQcmdTuples(PGresult *res)
return "";
}
p++;
return (p);
return p;
}
return "";
}