Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 99e9dea

Browse files
committed
Manual page renaming.
1 parent 5927d47 commit 99e9dea

File tree

7 files changed

+31
-16
lines changed

7 files changed

+31
-16
lines changed

src/bin/psql/psql.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.87 1997/08/25 19:41:48 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.88 1997/08/26 17:00:06 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -134,8 +134,8 @@ usage(char *progname)
134134
fprintf(stderr, "\t -s single step mode (prompts for each query)\n");
135135
fprintf(stderr, "\t -S single line mode (i.e. query terminated by newline)\n");
136136
fprintf(stderr, "\t -t turn off printing of headings and row count\n");
137-
fprintf(stderr, "\t -u ask for a username and password for authentication\n");
138137
fprintf(stderr, "\t -T html set html3.0 table command options (cf. -H)\n");
138+
fprintf(stderr, "\t -u ask for a username and password for authentication\n");
139139
fprintf(stderr, "\t -x turn on expanded output (field names on left)\n");
140140
exit(1);
141141
}

src/man/built-in.3

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/built-in.3,v 1.8 1997/07/02 14:13:14 thomas Exp $
4-
.TH BUILT-INS INTRO 04/01/97 PostgreSQL PostgreSQL
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/built-in.3,v 1.9 1997/08/26 17:00:11 momjian Exp $
4+
.TH PGBUILTIN INTRO 04/01/97 PostgreSQL PostgreSQL
55
.SH "DESCRIPTION"
66
This section describes the data types, functions and operators
77
available to users in Postgres as it is distributed.
8-
.SH "BUILT-IN TYPES"
8+
.SH "PGBUILTIN TYPES"
99
This section describes
10-
.BR built-in
10+
.BR pgbuiltin
1111
data types.
1212
These Built-in types are installed in every database.
1313
.PP

src/man/psql.1

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.10 1997/07/30 17:21:29 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.11 1997/08/26 17:00:14 momjian Exp $
44
.TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
55
.SH NAME
66
psql \(em run the interactive query front-end
@@ -27,6 +27,9 @@ dbName]
2727
.BR "-f"
2828
filename]
2929
[\c
30+
.BR "-F"
31+
separator]
32+
[\c
3033
.BR "-h"
3134
hostname]
3235
[\c
@@ -62,6 +65,9 @@ port]
6265
table-options
6366
]
6467
[\c
68+
.BR "-u"
69+
]
70+
[\c
6571
.BR "-x"
6672
]
6773
[dbname]
@@ -136,6 +142,12 @@ Use the file
136142
.IR "filename"
137143
as the source of queries instead of reading queries interactively.
138144
.TP
145+
.BR "-F" " separator"
146+
Use
147+
.IR "separator"
148+
as the field separator.
149+
The default is "|".
150+
.TP
139151
.BR "-h" " hostname"
140152
Specifies the hostname of the machine on which the
141153
.IR postmaster
@@ -197,6 +209,9 @@ tabular output. For example
197209
.BR border
198210
will give you tables with borders.
199211
.TP
212+
.BR "-u"
213+
Turns on username/password authentication.
214+
.TP
200215
.BR "-x"
201216
Turns on extended row format mode. When enabled each row will have its column
202217
names printed on the left with the column values printed on the right.

src/man/reset.l

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.1 1997/05/16 07:13:49 thomas Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.2 1997/08/26 17:00:16 momjian Exp $
44
.TH RESET SQL 05/14/97 PostgreSQL PostgreSQL
55
.SH NAME
66
reset \(em restore run-time parameters for session to default values
@@ -32,7 +32,7 @@ tgl=> reset GEQO;
3232
RESET VARIABLE
3333
.fi
3434
.SH "SEE ALSO"
35-
built-in(3),
35+
pgbuiltin(3),
3636
set(l),
3737
show(l).
3838
.SH BUGS

src/man/set.l

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.4 1997/06/03 04:14:31 vadim Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.5 1997/08/26 17:00:22 momjian Exp $
44
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL
55
.SH NAME
66
set \(em set run-time parameters for session
@@ -25,7 +25,7 @@ is enclosed in single-quotes.
2525
.IR DateStyle
2626
determines the output format for the date and time data types.
2727
See
28-
.IR "built-in" (3)
28+
.IR "pgbuiltin" (3)
2929
for more information on available styles.
3030

3131
.ce 1
@@ -105,7 +105,7 @@ set GEQO to 'on=4'
105105
set GEQO to 'off'
106106
.fi
107107
.SH "SEE ALSO"
108-
built-in(3),
108+
pgbuiltin(3),
109109
reset(l),
110110
show(l).
111111
.SH BUGS

src/man/show.l

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/show.l,v 1.1 1997/05/16 07:13:54 thomas Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/show.l,v 1.2 1997/08/26 17:00:23 momjian Exp $
44
.TH SHOW SQL 05/14/97 PostgreSQL PostgreSQL
55
.SH NAME
66
show \(em show run-time parameters for session
@@ -34,7 +34,7 @@ NOTICE:GEQO is ON
3434
SHOW VARIABLE
3535
.fi
3636
.SH "SEE ALSO"
37-
built-in(3),
37+
pgbuiltin(3),
3838
reset(l),
3939
set(l).
4040
.SH BUGS

src/man/sql.l

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.4 1997/08/03 02:38:47 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.5 1997/08/26 17:00:23 momjian Exp $
44
.TH INTRODUCTION SQL 11/5/95 PostgreSQL PostgreSQL
55
.SH "Section 4 \(em SQL Commands (COMMANDS)"
66
.SH "General Information"
@@ -183,7 +183,7 @@ indicated, then all array elements are returned.
183183
.SH "Operators"
184184
Any built-in system, or user-defined operator may be used in SQL.
185185
For the list of built-in and system operators consult
186-
.BR "introduction" "(3)."
186+
.BR "pgbuiltin" "(3)."
187187
For a list of user-defined operators consult your system administrator
188188
or run a query on the pg_operator class. Parentheses may be used for
189189
arbitrary grouping of operators.

0 commit comments

Comments
 (0)