mirror of
https://github.com/postgres/postgres.git
synced 2025-06-20 15:22:23 +03:00
Cleanups for 6.2.1.
This commit is contained in:
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
9
src/tools/RELEASE_CHANGES
Normal file
9
src/tools/RELEASE_CHANGES
Normal file
@ -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
|
||||
|
Reference in New Issue
Block a user