diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-10-16 04:14:30 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-10-16 04:14:30 +0000 |
commit | a805635d218e73bf9ddd11e7a9fda13ed7cd49d9 (patch) | |
tree | 8574999eaca8988c10b2948702407d9efea1dea8 /src | |
parent | 78351f422bc0aa97216c9fbbd998fbc948e82b24 (diff) | |
download | postgresql-a805635d218e73bf9ddd11e7a9fda13ed7cd49d9.tar.gz postgresql-a805635d218e73bf9ddd11e7a9fda13ed7cd49d9.zip |
Cleanups for 6.2.1.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 10 | ||||
-rw-r--r-- | src/include/version.h | 4 | ||||
-rw-r--r-- | src/man/libpq.3 | 4 | ||||
-rw-r--r-- | src/tools/RELEASE_CHANGES | 9 |
4 files changed, 18 insertions, 9 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index b55a23c429d..4f5bc86ae75 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -21,7 +21,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.49 1997/10/02 13:57:05 vadim Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.50 1997/10/16 04:14:00 momjian Exp $ * * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * @@ -1976,7 +1976,7 @@ dumpOprs(FILE *fout, OprInfo *oprinfo, int numOperators, char rightarg[MAXQUERYLEN]; char commutator[MAXQUERYLEN]; char negator[MAXQUERYLEN]; - char restrict[MAXQUERYLEN]; + char restrictor[MAXQUERYLEN]; char join[MAXQUERYLEN]; char sortop[MAXQUERYLEN]; @@ -2026,9 +2026,9 @@ dumpOprs(FILE *fout, OprInfo *oprinfo, int numOperators, findOprByOid(oprinfo, numOperators, oprinfo[i].oprnegate)); if (strcmp(oprinfo[i].oprrest, "-") == 0) - restrict[0] = '\0'; + restrictor[0] = '\0'; else - sprintf(restrict, ", RESTRICT = %s ", oprinfo[i].oprrest); + sprintf(restrictor, ", RESTRICT = %s ", oprinfo[i].oprrest); if (strcmp(oprinfo[i].oprjoin, "-") == 0) join[0] = '\0'; @@ -2059,7 +2059,7 @@ dumpOprs(FILE *fout, OprInfo *oprinfo, int numOperators, rightarg, commutator, negator, - restrict, + restrictor, (strcmp(oprinfo[i].oprcanhash, "t")) ? ", HASHES" : "", join, sortop); diff --git a/src/include/version.h b/src/include/version.h index ab2b82bc7dc..d2236452107 100644 --- a/src/include/version.h +++ b/src/include/version.h @@ -4,7 +4,7 @@ * this file contains the interface to version.c. * Also some parameters. * - * $Id: version.h,v 1.5 1997/10/03 17:31:29 scrappy Exp $ + * $Id: version.h,v 1.6 1997/10/16 04:14:06 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -18,7 +18,7 @@ void SetPgVersion(const char *path, char **reason_p); #define PG_RELEASE 6 -#define PG_VERSION 2 +#define PG_VERSION 1 #define PG_VERFILE "PG_VERSION" #endif diff --git a/src/man/libpq.3 b/src/man/libpq.3 index 2e4491df826..94c00ae3faf 100644 --- a/src/man/libpq.3 +++ b/src/man/libpq.3 @@ -1,6 +1,6 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.5 1997/10/01 18:14:53 momjian Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.6 1997/10/16 04:14:19 momjian Exp $ .TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL .SH DESCRIPTION Libpq is the programmer's interface to Postgres. Libpq is a set of @@ -202,7 +202,7 @@ be used to retrieve the tuples returned by the query. .B PQntuples returns the number of tuples (instances) in the query result, or the -number of rows affected for queries that do not return a tuples. +number of rows affected for queries that do not return any tuples. .nf int PQntuples(PGresult *res); diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES new file mode 100644 index 00000000000..18d55e974e0 --- /dev/null +++ b/src/tools/RELEASE_CHANGES @@ -0,0 +1,9 @@ +INSTALL +HISTORY +README +doc/FAQ, including version number +doc/Machine-specific FAQ's +doc/TODO +doc/bug.template +include/version.h + |