diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-16 03:01:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-16 03:01:43 +0000 |
commit | 604ce32e4672d60df4b34af18c6e74a1eed8cb07 (patch) | |
tree | 5443a0efbb7c8c07b0b4a652a43586a9935fcae1 | |
parent | 8c09eded1a61ae88b3dc078a89537d03197f3a3f (diff) | |
download | postgresql-604ce32e4672d60df4b34af18c6e74a1eed8cb07.tar.gz postgresql-604ce32e4672d60df4b34af18c6e74a1eed8cb07.zip |
Add .eo to pgbuiltin.
-rw-r--r-- | src/man/pgbuiltin.3 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/man/pgbuiltin.3 b/src/man/pgbuiltin.3 index 549f65063d7..f2215813ab6 100644 --- a/src/man/pgbuiltin.3 +++ b/src/man/pgbuiltin.3 @@ -1,6 +1,6 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/src/man/Attic/pgbuiltin.3,v 1.3 1997/09/16 02:49:23 momjian Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/pgbuiltin.3,v 1.4 1997/09/16 03:01:43 momjian Exp $ .TH PGBUILTIN INTRO 04/01/97 PostgreSQL PostgreSQL .SH "DESCRIPTION" This section describes the data types, functions and operators @@ -1075,6 +1075,7 @@ registered in the system catalogs. This list was generated from the Postgres system catalogs with the query: .nf +.eo SELECT o.oprname AS left_unary, t.typname AS operand, r.typname AS return_type @@ -1112,6 +1113,7 @@ left_unary|operand |return_type \| |tinterval|abstime (24 rows) +.ec .fi .in .SH "RIGHT UNARY OPERATORS" @@ -1121,6 +1123,7 @@ registered in the system catalogs. This list was generated from the Postgres system catalogs with the query: .nf +.eo SELECT o.oprname AS right_unary, t.typname AS operand, r.typname AS return_type @@ -1136,6 +1139,7 @@ right_unary|operand|return_type ! |int4 |int4 (2 rows) +.ec .fi .in .SH "AGGREGATE FUNCTIONS" @@ -1145,6 +1149,7 @@ registered in the system catalogs. This list was generated from the Postgres system catalogs with the query: .nf +.eo SELECT a.aggname, t.typname FROM pg_aggregate a, pg_type t WHERE a.aggbasetype = t.oid @@ -1184,6 +1189,7 @@ sum |money sum |timespan (30 rows) +.ec .fi \fBcount\fR is also available, where \fBcount(*)\fR returns a count of all rows while \fBcount(column_name)\fR returns a count of all non-null fields |