aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1996-12-29 00:58:32 +0000
committerBruce Momjian <bruce@momjian.us>1996-12-29 00:58:32 +0000
commitb0030c6c4258f820c9cb5452c4fe0442fee1b58e (patch)
tree03bed8a787c6ee2364002bcb766f920326179bc4
parent2d291ab0938b906bb581903df086c1ed0ea02e4a (diff)
downloadpostgresql-b0030c6c4258f820c9cb5452c4fe0442fee1b58e.tar.gz
postgresql-b0030c6c4258f820c9cb5452c4fe0442fee1b58e.zip
New EXPLAIN manual page.
-rw-r--r--src/man/explain.l14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/man/explain.l b/src/man/explain.l
new file mode 100644
index 00000000000..45b7343bd41
--- /dev/null
+++ b/src/man/explain.l
@@ -0,0 +1,14 @@
+.\" This is -*-nroff-*-
+.\" XXX standard disclaimer belongs here....
+.\" $Header: /cvsroot/pgsql/src/man/Attic/explain.l,v 1.1 1996/12/29 00:58:32 momjian Exp $
+.TH EXPLAIN SQL 11/05/95 PostgreSQL PostgreSQL
+.SH NAME
+explain \(em explains statement execution details
+.SH SYNOPSIS
+.nf
+\fBexplain [with\fP \fB{cost|full}]\fR query
+.fi
+.SH DESCRIPTION
+This command outputs details about the supplied query. The default
+output is the computed query cost. \f2full\f1 displays a full query plan
+and costs.