Commit 99e9deac authored by Bruce Momjian's avatar Bruce Momjian

Manual page renaming.

parent 5927d47b
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.87 1997/08/25 19:41:48 momjian Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.88 1997/08/26 17:00:06 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -134,8 +134,8 @@ usage(char *progname) ...@@ -134,8 +134,8 @@ usage(char *progname)
fprintf(stderr, "\t -s single step mode (prompts for each query)\n"); fprintf(stderr, "\t -s single step mode (prompts for each query)\n");
fprintf(stderr, "\t -S single line mode (i.e. query terminated by newline)\n"); fprintf(stderr, "\t -S single line mode (i.e. query terminated by newline)\n");
fprintf(stderr, "\t -t turn off printing of headings and row count\n"); fprintf(stderr, "\t -t turn off printing of headings and row count\n");
fprintf(stderr, "\t -u ask for a username and password for authentication\n");
fprintf(stderr, "\t -T html set html3.0 table command options (cf. -H)\n"); fprintf(stderr, "\t -T html set html3.0 table command options (cf. -H)\n");
fprintf(stderr, "\t -u ask for a username and password for authentication\n");
fprintf(stderr, "\t -x turn on expanded output (field names on left)\n"); fprintf(stderr, "\t -x turn on expanded output (field names on left)\n");
exit(1); exit(1);
} }
......
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/built-in.3,v 1.8 1997/07/02 14:13:14 thomas Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/built-in.3,v 1.9 1997/08/26 17:00:11 momjian Exp $
.TH BUILT-INS INTRO 04/01/97 PostgreSQL PostgreSQL .TH PGBUILTIN INTRO 04/01/97 PostgreSQL PostgreSQL
.SH "DESCRIPTION" .SH "DESCRIPTION"
This section describes the data types, functions and operators This section describes the data types, functions and operators
available to users in Postgres as it is distributed. available to users in Postgres as it is distributed.
.SH "BUILT-IN TYPES" .SH "PGBUILTIN TYPES"
This section describes This section describes
.BR built-in .BR pgbuiltin
data types. data types.
These Built-in types are installed in every database. These Built-in types are installed in every database.
.PP .PP
......
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.10 1997/07/30 17:21:29 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.11 1997/08/26 17:00:14 momjian Exp $
.TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL .TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME .SH NAME
psql \(em run the interactive query front-end psql \(em run the interactive query front-end
...@@ -27,6 +27,9 @@ dbName] ...@@ -27,6 +27,9 @@ dbName]
.BR "-f" .BR "-f"
filename] filename]
[\c [\c
.BR "-F"
separator]
[\c
.BR "-h" .BR "-h"
hostname] hostname]
[\c [\c
...@@ -62,6 +65,9 @@ port] ...@@ -62,6 +65,9 @@ port]
table-options table-options
] ]
[\c [\c
.BR "-u"
]
[\c
.BR "-x" .BR "-x"
] ]
[dbname] [dbname]
...@@ -136,6 +142,12 @@ Use the file ...@@ -136,6 +142,12 @@ Use the file
.IR "filename" .IR "filename"
as the source of queries instead of reading queries interactively. as the source of queries instead of reading queries interactively.
.TP .TP
.BR "-F" " separator"
Use
.IR "separator"
as the field separator.
The default is "|".
.TP
.BR "-h" " hostname" .BR "-h" " hostname"
Specifies the hostname of the machine on which the Specifies the hostname of the machine on which the
.IR postmaster .IR postmaster
...@@ -197,6 +209,9 @@ tabular output. For example ...@@ -197,6 +209,9 @@ tabular output. For example
.BR border .BR border
will give you tables with borders. will give you tables with borders.
.TP .TP
.BR "-u"
Turns on username/password authentication.
.TP
.BR "-x" .BR "-x"
Turns on extended row format mode. When enabled each row will have its column Turns on extended row format mode. When enabled each row will have its column
names printed on the left with the column values printed on the right. names printed on the left with the column values printed on the right.
......
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.1 1997/05/16 07:13:49 thomas Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.2 1997/08/26 17:00:16 momjian Exp $
.TH RESET SQL 05/14/97 PostgreSQL PostgreSQL .TH RESET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME .SH NAME
reset \(em restore run-time parameters for session to default values reset \(em restore run-time parameters for session to default values
...@@ -32,7 +32,7 @@ tgl=> reset GEQO; ...@@ -32,7 +32,7 @@ tgl=> reset GEQO;
RESET VARIABLE RESET VARIABLE
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
built-in(3), pgbuiltin(3),
set(l), set(l),
show(l). show(l).
.SH BUGS .SH BUGS
......
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.4 1997/06/03 04:14:31 vadim Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.5 1997/08/26 17:00:22 momjian Exp $
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL .TH SET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME .SH NAME
set \(em set run-time parameters for session set \(em set run-time parameters for session
...@@ -25,7 +25,7 @@ is enclosed in single-quotes. ...@@ -25,7 +25,7 @@ is enclosed in single-quotes.
.IR DateStyle .IR DateStyle
determines the output format for the date and time data types. determines the output format for the date and time data types.
See See
.IR "built-in" (3) .IR "pgbuiltin" (3)
for more information on available styles. for more information on available styles.
.ce 1 .ce 1
...@@ -105,7 +105,7 @@ set GEQO to 'on=4' ...@@ -105,7 +105,7 @@ set GEQO to 'on=4'
set GEQO to 'off' set GEQO to 'off'
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
built-in(3), pgbuiltin(3),
reset(l), reset(l),
show(l). show(l).
.SH BUGS .SH BUGS
......
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/show.l,v 1.1 1997/05/16 07:13:54 thomas Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/show.l,v 1.2 1997/08/26 17:00:23 momjian Exp $
.TH SHOW SQL 05/14/97 PostgreSQL PostgreSQL .TH SHOW SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME .SH NAME
show \(em show run-time parameters for session show \(em show run-time parameters for session
...@@ -34,7 +34,7 @@ NOTICE:GEQO is ON ...@@ -34,7 +34,7 @@ NOTICE:GEQO is ON
SHOW VARIABLE SHOW VARIABLE
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
built-in(3), pgbuiltin(3),
reset(l), reset(l),
set(l). set(l).
.SH BUGS .SH BUGS
......
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.4 1997/08/03 02:38:47 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.5 1997/08/26 17:00:23 momjian Exp $
.TH INTRODUCTION SQL 11/5/95 PostgreSQL PostgreSQL .TH INTRODUCTION SQL 11/5/95 PostgreSQL PostgreSQL
.SH "Section 4 \(em SQL Commands (COMMANDS)" .SH "Section 4 \(em SQL Commands (COMMANDS)"
.SH "General Information" .SH "General Information"
...@@ -183,7 +183,7 @@ indicated, then all array elements are returned. ...@@ -183,7 +183,7 @@ indicated, then all array elements are returned.
.SH "Operators" .SH "Operators"
Any built-in system, or user-defined operator may be used in SQL. Any built-in system, or user-defined operator may be used in SQL.
For the list of built-in and system operators consult For the list of built-in and system operators consult
.BR "introduction" "(3)." .BR "pgbuiltin" "(3)."
For a list of user-defined operators consult your system administrator For a list of user-defined operators consult your system administrator
or run a query on the pg_operator class. Parentheses may be used for or run a query on the pg_operator class. Parentheses may be used for
arbitrary grouping of operators. arbitrary grouping of operators.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment