mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Add TEMP tables/indexes. Add COPY pfree(). Other cleanups.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/copy.l,v 1.6 1998/06/24 13:21:24 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/copy.l,v 1.7 1999/02/02 03:45:31 momjian Exp $
|
||||
.TH COPY SQL 11/05/95 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
copy - copy data to or from a class from or to a Unix file.
|
||||
@ -93,8 +93,8 @@ encountered.
|
||||
.PP
|
||||
The backslash character has special meaning.
|
||||
.BR NULL
|
||||
attributes are output as \\N.
|
||||
A literal backslash character is output as two consecutive backslashes.
|
||||
attributes are represented as \\N.
|
||||
A literal backslash character is represented as two consecutive backslashes.
|
||||
A literal tab character is represented as a backslash and a tab.
|
||||
A literal newline character is represented as a backslash and a newline.
|
||||
When loading ASCII data not generated by PostgreSQL, you will need to
|
||||
|
@ -1,12 +1,12 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.22 1998/10/14 02:54:29 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.23 1999/02/02 03:45:32 momjian Exp $
|
||||
.TH "CREATE TABLE" SQL 09/25/97 PostgreSQL
|
||||
.SH NAME
|
||||
create table - create a new class
|
||||
.SH SYNOPSIS
|
||||
.nf
|
||||
\fBcreate table\fR classname
|
||||
\fBcreate\fR [\fBtemp\fR] \fBtable\fR classname
|
||||
\fB(\fP
|
||||
attname type
|
||||
[\fBdefault\fP value]
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/select.l,v 1.10 1998/07/12 04:49:47 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/select.l,v 1.11 1999/02/02 03:45:32 momjian Exp $
|
||||
.TH SELECT SQL 11/05/95 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
select - retrieve instances from a class
|
||||
@ -9,7 +9,7 @@ select - retrieve instances from a class
|
||||
\fBselect\fR [distinct [on attr_name]]
|
||||
expression1 [\fBas\fR attr_name-1]
|
||||
{, expression-1 [\fBas\fR attr_name-i]}
|
||||
[\fBinto\fR [\fBtable\fR] classname]
|
||||
[\fBinto\fR [\fBtemp\fR] [\fBtable\fR] classname]
|
||||
[\fBfrom\fR from-list]
|
||||
[\fBwhere\fR where-clause]
|
||||
[\fBgroup by\fR attr_name1 {, attr_name-i....}]
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.11 1998/10/14 05:10:12 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.12 1999/02/02 03:45:33 momjian Exp $
|
||||
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
set - set run-time parameters for session
|
||||
@ -44,8 +44,10 @@ determines the output format for the date and time data types.
|
||||
.IR GEQO
|
||||
enables or disables the genetic optimizer algorithm. This algorithm is
|
||||
.IR on
|
||||
by default, which used GEQO for statements of eight or more tables.
|
||||
See the GEQO README for more information.
|
||||
by default, which used GEQO for statements of six or more tables.
|
||||
Set the
|
||||
.IR Programmer's Guide
|
||||
for more information.
|
||||
|
||||
.ce 1
|
||||
\fBGEQO Values\fR
|
||||
|
Reference in New Issue
Block a user