aboutsummaryrefslogtreecommitdiff
path: root/src/man/reset.l
blob: dbeaff0726c567c1b50a6c53b10295cf1a25e47c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.3 1998/01/11 22:17:55 momjian Exp $
.TH RESET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME
reset - restore run-time parameters for session to default values
.SH SYNOPSIS
.nf
\fBreset\fR variable
.fi
.SH DESCRIPTION
.BR Reset
will display the current configuration parameters for
.IR variable 
during a session.
.PP
The session can be configured using
.IR set (l),
and values can be displayed using
.IR show (l).
Parameters and values are case-insensitive.
.PP
See
.IR set (l)
for more information on available variables.

.SH EXAMPLES
.nf
tgl=> reset DateStyle;
RESET VARIABLE
tgl=> reset GEQO;
RESET VARIABLE
.fi
.SH "SEE ALSO"
pgbuiltin(3),
set(l),
show(l).
.SH BUGS
TBD