Commit 140f7286 authored by Bruce Momjian's avatar Bruce Momjian

Update manuals for 6.2 release.

parent 59509a07
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pgbuiltin.3,v 1.7 1997/10/01 18:53:26 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pgbuiltin.3,v 1.8 1997/10/01 18:57:48 momjian Exp $
.TH PGBUILTIN 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
...@@ -1195,8 +1195,8 @@ left_unary|operand |return_type ...@@ -1195,8 +1195,8 @@ left_unary|operand |return_type
; |float8 |float8 ; |float8 |float8
- |float8 |float8 - |float8 |float8
@ |float8 |float8 @ |float8 |float8
|/ |float8 |float8 |/ |float8 |float8
||/ |float8 |float8 ||/ |float8 |float8
% |float8 |float8 % |float8 |float8
: |float8 |float8 : |float8 |float8
- |int2 |int2 - |int2 |int2
......
.\" 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.5 1997/08/26 17:00:23 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.6 1997/10/01 18:53:29 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"
...@@ -13,9 +13,17 @@ constituent parts of SQL statements are drawn. ...@@ -13,9 +13,17 @@ constituent parts of SQL statements are drawn.
A A
.IR comment .IR comment
is an arbitrary sequence of characters following double dashes up to the end is an arbitrary sequence of characters following double dashes up to the end
of the line e.g: of the line. We also support double-slashes as comments, e.g.:
.nf .nf
-- This is a comment -- This is a standard SQL comment
// And this is another supported comment style, like C++
.fi
We also support C-style comments, e.g.:
.nf
/* multi
line
comment */
.fi .fi
.SH "Names" .SH "Names"
.IR Names .IR Names
......
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