Add underscores in manual references.
This commit is contained in:
parent
cfef6ef4ff
commit
9dde6b3de9
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.9 1998/06/23 15:35:44 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.10 1998/06/23 17:52:28 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -92,7 +92,6 @@ CreateSharedMemoryAndSemaphores(IPCKey key)
|
|||||||
* ----------------
|
* ----------------
|
||||||
*/
|
*/
|
||||||
InitLocks();
|
InitLocks();
|
||||||
InitMultiLevelLockm();
|
|
||||||
if (InitMultiLevelLockm() == INVALID_TABLEID)
|
if (InitMultiLevelLockm() == INVALID_TABLEID)
|
||||||
elog(FATAL, "Couldn't create the lock table");
|
elog(FATAL, "Couldn't create the lock table");
|
||||||
|
|
||||||
@ -146,7 +145,7 @@ AttachSharedMemoryAndSemaphores(IPCKey key)
|
|||||||
* ----------------
|
* ----------------
|
||||||
*/
|
*/
|
||||||
InitLocks();
|
InitLocks();
|
||||||
if (InitMultiLevelLockm() == INVALID_TABLEID)
|
if (!MultiTableId && InitMultiLevelLockm() == INVALID_TABLEID)
|
||||||
elog(FATAL, "Couldn't attach to the lock table");
|
elog(FATAL, "Couldn't attach to the lock table");
|
||||||
|
|
||||||
AttachSharedInvalidationState(key);
|
AttachSharedInvalidationState(key);
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.12 1998/06/15 19:29:21 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.13 1998/06/23 17:52:28 momjian Exp $
|
||||||
*
|
*
|
||||||
* NOTES:
|
* NOTES:
|
||||||
* (1) The lock.c module assumes that the caller here is doing
|
* (1) The lock.c module assumes that the caller here is doing
|
||||||
@ -89,13 +89,6 @@ InitMultiLevelLockm()
|
|||||||
{
|
{
|
||||||
int tableId;
|
int tableId;
|
||||||
|
|
||||||
/* -----------------------
|
|
||||||
* If we're already initialized just return the table id.
|
|
||||||
* -----------------------
|
|
||||||
*/
|
|
||||||
if (MultiTableId)
|
|
||||||
return MultiTableId;
|
|
||||||
|
|
||||||
tableId = LockTabInit("LockTable", MultiConflicts, MultiPrios, 5);
|
tableId = LockTabInit("LockTable", MultiConflicts, MultiPrios, 5);
|
||||||
MultiTableId = tableId;
|
MultiTableId = tableId;
|
||||||
if (!(MultiTableId))
|
if (!(MultiTableId))
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/alter_table.l,v 1.5 1998/03/31 04:44:19 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/alter_table.l,v 1.6 1998/06/23 17:52:29 momjian Exp $
|
||||||
.TH "ALTER TABLE" SQL 09/25/97 PostgreSQL
|
.TH "ALTER TABLE" SQL 09/25/97 PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
alter table - add attributes to a class, or rename an attribute or class
|
alter table - add attributes to a class, or rename an attribute or class
|
||||||
@ -30,7 +30,7 @@ after this command is executed.
|
|||||||
.PP
|
.PP
|
||||||
The new attributes and their types are specified
|
The new attributes and their types are specified
|
||||||
in the same style and with the the same restrictions as in
|
in the same style and with the the same restrictions as in
|
||||||
.IR "create table" (l).
|
.IR "create_table" (l).
|
||||||
.PP
|
.PP
|
||||||
In order to add an attribute to each class in an entire inheritance
|
In order to add an attribute to each class in an entire inheritance
|
||||||
hierarchy, use the
|
hierarchy, use the
|
||||||
@ -99,6 +99,6 @@ alter table emp rename column sports to hobbies
|
|||||||
alter table person * rename column last_name to family_name
|
alter table person * rename column last_name to family_name
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create table (l),
|
create_table (l),
|
||||||
update (l).
|
update (l).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/copy.l,v 1.4 1998/01/11 22:17:11 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/copy.l,v 1.5 1998/06/23 17:52:30 momjian Exp $
|
||||||
.TH COPY SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH COPY SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
copy - copy data to or from a class from or to a Unix file.
|
copy - copy data to or from a class from or to a Unix file.
|
||||||
@ -139,7 +139,7 @@ Note that variable length attributes are preceded by the attribute's
|
|||||||
length; arrays are simply contiguous streams of the array element
|
length; arrays are simply contiguous streams of the array element
|
||||||
type.
|
type.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
insert(l), create table(l), vacuum(l), libpq.
|
insert(l), create_table(l), vacuum(l), libpq.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Files used as arguments to the
|
Files used as arguments to the
|
||||||
.BR copy
|
.BR copy
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_aggregate.l,v 1.5 1998/01/11 22:17:11 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_aggregate.l,v 1.6 1998/06/23 17:52:31 momjian Exp $
|
||||||
.TH "CREATE AGGREGATE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE AGGREGATE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create aggregate - define a new aggregate
|
create aggregate - define a new aggregate
|
||||||
@ -90,5 +90,5 @@ create aggregate avg (sfunc1 = int4add, basetype = int4,
|
|||||||
finalfunc = int4div, initcond1 = "0", initcond2 = "0")
|
finalfunc = int4div, initcond1 = "0", initcond2 = "0")
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create function(l),
|
create_function(l),
|
||||||
remove aggregate(l).
|
drop_aggregate(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_database.l,v 1.5 1998/01/11 22:17:13 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_database.l,v 1.6 1998/06/23 17:52:31 momjian Exp $
|
||||||
.TH "CREATE DATABASE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE DATABASE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create database - create a new database
|
create database - create a new database
|
||||||
@ -19,7 +19,7 @@ location must be pre-configured by
|
|||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
createdb(1),
|
createdb(1),
|
||||||
drop database(l),
|
drop_database(l),
|
||||||
destroydb(1),
|
destroydb(1),
|
||||||
initarea(1),
|
initarea(1),
|
||||||
initdb(1).
|
initdb(1).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_function.l,v 1.8 1998/04/26 04:09:37 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_function.l,v 1.9 1998/06/23 17:52:31 momjian Exp $
|
||||||
.TH "CREATE FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
create function - define a new function
|
create function - define a new function
|
||||||
@ -34,7 +34,7 @@ or
|
|||||||
(The
|
(The
|
||||||
.IR "plname"
|
.IR "plname"
|
||||||
is the language name of a created procedural language. See
|
is the language name of a created procedural language. See
|
||||||
create language(l) for details.)
|
create_language(l) for details.)
|
||||||
(The
|
(The
|
||||||
.IR "arg is"
|
.IR "arg is"
|
||||||
clause may be left out if the function has no arguments, or
|
clause may be left out if the function has no arguments, or
|
||||||
@ -389,7 +389,7 @@ select function hobbies (EMP) returns set of HOBBIES
|
|||||||
language 'sql'
|
language 'sql'
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.PP
|
.PP
|
||||||
information(1), load(l), drop function(l), create language(l).
|
information(1), load(l), drop_function(l), create_language(l).
|
||||||
.SH "NOTES"
|
.SH "NOTES"
|
||||||
.SH "Name Space Conflicts"
|
.SH "Name Space Conflicts"
|
||||||
More than one function may be defined with the same name, as long as
|
More than one function may be defined with the same name, as long as
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_language.l,v 1.2 1998/01/11 22:17:14 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_language.l,v 1.3 1998/06/23 17:52:31 momjian Exp $
|
||||||
.TH "CREATE LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
create language - define a new language for functions
|
create language - define a new language for functions
|
||||||
@ -19,7 +19,7 @@ privilege to register a new language.
|
|||||||
The lanname is the name of the new procedural language. It is converted
|
The lanname is the name of the new procedural language. It is converted
|
||||||
to lower case before the new entry in the pg_language system catalog
|
to lower case before the new entry in the pg_language system catalog
|
||||||
is inserted. Note that this case translation is also done on
|
is inserted. Note that this case translation is also done on
|
||||||
create function(l) and drop language(l). Thus, the language name
|
create_function(l) and drop_language(l). Thus, the language name
|
||||||
is case insensitive. A procedural language cannot override one of the
|
is case insensitive. A procedural language cannot override one of the
|
||||||
builtin languages of Postgres.
|
builtin languages of Postgres.
|
||||||
.PP
|
.PP
|
||||||
@ -60,7 +60,7 @@ It's up to the call handler to fetch the pg_proc entry
|
|||||||
and to analyze the argument and return types of the called procedure.
|
and to analyze the argument and return types of the called procedure.
|
||||||
the
|
the
|
||||||
.IR "as"
|
.IR "as"
|
||||||
clause from the create function(l) of the procedure will be found in
|
clause from the create_function(l) of the procedure will be found in
|
||||||
the prosrc attribute of the pg_proc entry. This may be the source text
|
the prosrc attribute of the pg_proc entry. This may be the source text
|
||||||
in the procedural language itself (like for PL/Tcl), a pathname to a
|
in the procedural language itself (like for PL/Tcl), a pathname to a
|
||||||
file or anything else that tells the call handler what to do in detail.
|
file or anything else that tells the call handler what to do in detail.
|
||||||
@ -109,7 +109,7 @@ plsample_call_handler(
|
|||||||
|
|
||||||
.fi
|
.fi
|
||||||
Only a few thousand lines of code have to be added instead of the dots
|
Only a few thousand lines of code have to be added instead of the dots
|
||||||
to complete the PL call handler. See create function(l) how to compile
|
to complete the PL call handler. See create_function(l) how to compile
|
||||||
it into a loadable module. The following commands then register the
|
it into a loadable module. The following commands then register the
|
||||||
sample procedural language.
|
sample procedural language.
|
||||||
.nf
|
.nf
|
||||||
@ -125,7 +125,7 @@ create procedural language 'plsample'
|
|||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.PP
|
.PP
|
||||||
create function(l), drop language(l).
|
create_function(l), drop_language(l).
|
||||||
.SH "RESTRICTIONS"
|
.SH "RESTRICTIONS"
|
||||||
Since the call handler for a procedural language must be
|
Since the call handler for a procedural language must be
|
||||||
registered with Postgres in the 'C' language, it inherits
|
registered with Postgres in the 'C' language, it inherits
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_operator.l,v 1.4 1998/01/11 22:17:15 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_operator.l,v 1.5 1998/06/23 17:52:32 momjian Exp $
|
||||||
.TH "CREATE OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create operator - define a new user operator
|
create operator - define a new user operator
|
||||||
@ -66,7 +66,7 @@ The name of the operator,
|
|||||||
can be composed of symbols only. Also, the
|
can be composed of symbols only. Also, the
|
||||||
.IR func_name
|
.IR func_name
|
||||||
procedure must have been previously defined using
|
procedure must have been previously defined using
|
||||||
.IR "create function" (l)
|
.IR "create_function" (l)
|
||||||
and must have one or two arguments.
|
and must have one or two arguments.
|
||||||
.PP
|
.PP
|
||||||
.\" that multiple instances of the
|
.\" that multiple instances of the
|
||||||
@ -242,8 +242,8 @@ create operator === (
|
|||||||
.\" arg is (box, box)
|
.\" arg is (box, box)
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create function(l),
|
create_function(l),
|
||||||
drop operator(l).
|
drop_operator(l).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Operator names cannot be composed of alphabetic characters in
|
Operator names cannot be composed of alphabetic characters in
|
||||||
Postgres.
|
Postgres.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_rule.l,v 1.7 1998/04/26 04:09:42 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_rule.l,v 1.8 1998/06/23 17:52:32 momjian Exp $
|
||||||
.TH "CREATE RULE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE RULE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create rule - define a new rule
|
create rule - define a new rule
|
||||||
@ -199,8 +199,8 @@ create rule example_5 is
|
|||||||
do update newset salary = 5000
|
do update newset salary = 5000
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
drop rule(l),
|
drop_rule(l),
|
||||||
create view(l).
|
create_view(l).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
.PP
|
.PP
|
||||||
.BR "instead"
|
.BR "instead"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_sequence.l,v 1.3 1998/01/11 22:17:17 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_sequence.l,v 1.4 1998/06/23 17:52:32 momjian Exp $
|
||||||
.TH "CREATE SEQUENCE" SQL 04/01/97 PostgreSQL PostgreSQL
|
.TH "CREATE SEQUENCE" SQL 04/01/97 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create sequence - create a new sequence number generator
|
create sequence - create a new sequence number generator
|
||||||
@ -109,4 +109,4 @@ select nextval ('seq');
|
|||||||
insert into table _table_ values (nextval ('seq'),...);
|
insert into table _table_ values (nextval ('seq'),...);
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
drop sequence(l).
|
drop_sequence(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.18 1998/04/27 03:41:33 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.19 1998/06/23 17:52:32 momjian Exp $
|
||||||
.TH "CREATE TABLE" SQL 09/25/97 PostgreSQL
|
.TH "CREATE TABLE" SQL 09/25/97 PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create table - create a new class
|
create table - create a new class
|
||||||
@ -146,4 +146,4 @@ create table component
|
|||||||
The \fBforeign key\fP and \fBreferences\fP keywords are parsed but not yet
|
The \fBforeign key\fP and \fBreferences\fP keywords are parsed but not yet
|
||||||
implemented in PostgreSQL 6.3.1.
|
implemented in PostgreSQL 6.3.1.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
drop table(l).
|
drop_table(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_trigger.l,v 1.3 1998/01/11 22:17:20 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_trigger.l,v 1.4 1998/06/23 17:52:33 momjian Exp $
|
||||||
.TH "CREATE TRIGGER" SQL 09/25/97 PostgreSQL
|
.TH "CREATE TRIGGER" SQL 09/25/97 PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create trigger - create a new trigger
|
create trigger - create a new trigger
|
||||||
@ -47,4 +47,4 @@ Refer to the SPI and trigger programming guides for more information.
|
|||||||
.SH EXAMPLES
|
.SH EXAMPLES
|
||||||
Examples are included in the contrib area of the source distribution.
|
Examples are included in the contrib area of the source distribution.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
drop trigger(l).
|
drop_trigger(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_type.l,v 1.4 1998/01/11 22:17:21 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_type.l,v 1.5 1998/06/23 17:52:33 momjian Exp $
|
||||||
.TH "CREATE TYPE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE TYPE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create type - define a new base data type
|
create type - define a new base data type
|
||||||
@ -28,7 +28,7 @@ defined for this database.
|
|||||||
.PP
|
.PP
|
||||||
.BR "Create type"
|
.BR "Create type"
|
||||||
requires the registration of two functions (using
|
requires the registration of two functions (using
|
||||||
.IR "create function" (l))
|
.IR "create_function" (l))
|
||||||
before defining the type. The representation of a new base type is
|
before defining the type. The representation of a new base type is
|
||||||
determined by
|
determined by
|
||||||
.IR input_function ,
|
.IR input_function ,
|
||||||
@ -155,7 +155,7 @@ and can only be 15 characters long. This is because Postgres silently
|
|||||||
creates an array type for each base type with a name consisting of the
|
creates an array type for each base type with a name consisting of the
|
||||||
base type's name prepended with an underscore.
|
base type's name prepended with an underscore.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create function(l),
|
create_function(l),
|
||||||
create operator(l),
|
create_operator(l),
|
||||||
drop type(l),
|
drop_type(l),
|
||||||
large_objects(3).
|
large_objects(3).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_version.l,v 1.3 1998/01/11 22:17:21 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_version.l,v 1.4 1998/06/23 17:52:34 momjian Exp $
|
||||||
.TH "CREATE VERSION" SQL 01/23/93 PostgreSQL PostgreSQL
|
.TH "CREATE VERSION" SQL 01/23/93 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create version - construct a version class
|
create version - construct a version class
|
||||||
@ -62,7 +62,7 @@ in [ONG90].
|
|||||||
create version foobar from barfoo [ "Jan 17 1990" ]
|
create version foobar from barfoo [ "Jan 17 1990" ]
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create view(l), merge(l).
|
create_view(l), merge(l).
|
||||||
.SH "BUGS"
|
.SH "BUGS"
|
||||||
Snapshots (i.e., the optional
|
Snapshots (i.e., the optional
|
||||||
.IR abstime
|
.IR abstime
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_view.l,v 1.3 1998/01/11 22:17:22 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_view.l,v 1.4 1998/06/23 17:52:34 momjian Exp $
|
||||||
.TH "CREATE VIEW" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "CREATE VIEW" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
create view - construct a virtual class
|
create view - construct a virtual class
|
||||||
@ -41,5 +41,5 @@ create rule example1 as
|
|||||||
where emp.oid = current.oid
|
where emp.oid = current.oid
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create table(l),
|
create_table(l),
|
||||||
create rule(l),
|
create_rule(l),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop.l,v 1.5 1998/01/11 22:17:26 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop.l,v 1.6 1998/06/23 17:52:34 momjian Exp $
|
||||||
.TH "DROP ATTRIBUTE" SQL 09/26/97 PostgreSQL
|
.TH "DROP ATTRIBUTE" SQL 09/26/97 PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop - destroy existing attributes
|
drop - destroy existing attributes
|
||||||
@ -15,14 +15,14 @@ removes an attribute from the database.
|
|||||||
Refer to a specific man page (e.g. "man drop_table") for details.
|
Refer to a specific man page (e.g. "man drop_table") for details.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
delete(l),
|
delete(l),
|
||||||
drop aggregate(l),
|
drop_aggregate(l),
|
||||||
drop database(l),
|
drop_database(l),
|
||||||
drop function(l),
|
drop_function(l),
|
||||||
drop index(l),
|
drop_index(l),
|
||||||
drop operator(l),
|
drop_operator(l),
|
||||||
drop rule(l),
|
drop_rule(l),
|
||||||
drop sequence(l),
|
drop_sequence(l),
|
||||||
drop table(l),
|
drop_table(l),
|
||||||
drop trigger(l),
|
drop_trigger(l),
|
||||||
drop type(l),
|
drop_type(l),
|
||||||
drop view(l).
|
drop_view(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_aggregate.l,v 1.4 1998/01/11 22:17:27 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_aggregate.l,v 1.5 1998/06/23 17:52:35 momjian Exp $
|
||||||
.TH "DROP AGGREGATE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP AGGREGATE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop aggregate - remove the definition of an aggregate
|
drop aggregate - remove the definition of an aggregate
|
||||||
@ -21,4 +21,4 @@ aggregate.
|
|||||||
drop aggregate avg int4
|
drop aggregate avg int4
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create aggregate(l).
|
create_aggregate(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_database.l,v 1.2 1998/01/11 22:17:27 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_database.l,v 1.3 1998/06/23 17:52:35 momjian Exp $
|
||||||
.TH "DROP DATABASE" SQL 01/23/93 PostgreSQL PostgreSQL
|
.TH "DROP DATABASE" SQL 01/23/93 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop database - destroy an existing database
|
drop database - destroy an existing database
|
||||||
@ -16,7 +16,7 @@ database administrator (see
|
|||||||
.IR createdb (l)
|
.IR createdb (l)
|
||||||
for details).
|
for details).
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create database(l),
|
create_database(l),
|
||||||
destroydb(1).
|
destroydb(1).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
This query should
|
This query should
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_function.l,v 1.3 1998/01/11 22:17:28 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_function.l,v 1.4 1998/06/23 17:52:35 momjian Exp $
|
||||||
.TH "DROP FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop function - remove a user-defined C function
|
drop function - remove a user-defined C function
|
||||||
@ -22,7 +22,7 @@ function with the given name and argument types will be removed.
|
|||||||
drop function sqrt(int4)
|
drop function sqrt(int4)
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create function(l).
|
create_function(l).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
No checks are made to ensure that types, operators or access methods
|
No checks are made to ensure that types, operators or access methods
|
||||||
that rely on the function have been removed first.
|
that rely on the function have been removed first.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_index.l,v 1.3 1998/01/11 22:17:29 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_index.l,v 1.4 1998/06/23 17:52:35 momjian Exp $
|
||||||
.TH "DROP INDEX" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP INDEX" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop index - removes an index from Postgres
|
drop index - removes an index from Postgres
|
||||||
@ -19,4 +19,4 @@ execute this command you must be the owner of the index.
|
|||||||
drop index emp_index
|
drop index emp_index
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create index(l).
|
create_index(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_language.l,v 1.2 1998/01/11 22:17:29 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_language.l,v 1.3 1998/06/23 17:52:35 momjian Exp $
|
||||||
.TH "DROP LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop language - remove a user-defined procedural language
|
drop language - remove a user-defined procedural language
|
||||||
@ -21,7 +21,7 @@ name
|
|||||||
drop procedural language 'plsample';
|
drop procedural language 'plsample';
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create language(l).
|
create_language(l).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
No checks are made if functions or trigger procedures registered
|
No checks are made if functions or trigger procedures registered
|
||||||
in this language still exist. To reenable them without having to
|
in this language still exist. To reenable them without having to
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_operator.l,v 1.3 1998/01/11 22:17:30 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_operator.l,v 1.4 1998/06/23 17:52:36 momjian Exp $
|
||||||
.TH "DROP OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop operator - remove an operator from the system
|
drop operator - remove an operator from the system
|
||||||
@ -41,4 +41,4 @@ drop operator ! (none, bool)
|
|||||||
drop operator ! (int4, none)
|
drop operator ! (int4, none)
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create operator(l).
|
create_operator(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_rule.l,v 1.2 1996/12/11 00:27:42 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_rule.l,v 1.3 1998/06/23 17:52:36 momjian Exp $
|
||||||
.TH "DROP RULE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP RULE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop rule \- removes a current rule from Postgres
|
drop rule \- removes a current rule from Postgres
|
||||||
@ -20,8 +20,8 @@ its definition from the system catalogs.
|
|||||||
drop rule example_1
|
drop rule example_1
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create rule(l),
|
create_rule(l),
|
||||||
drop view(l).
|
drop_view(l).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Once a rule is dropped, access to historical information the rule has
|
Once a rule is dropped, access to historical information the rule has
|
||||||
written may disappear.
|
written may disappear.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_table.l,v 1.2 1998/01/11 22:17:31 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_table.l,v 1.3 1998/06/23 17:52:36 momjian Exp $
|
||||||
.TH "DROP TABLE" SQL 09/26/97 PostgreSQL
|
.TH "DROP TABLE" SQL 09/26/97 PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop table - destroy existing classes
|
drop table - destroy existing classes
|
||||||
@ -38,13 +38,13 @@ drop table emp, parts
|
|||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
delete(l),
|
delete(l),
|
||||||
drop aggregate(l),
|
drop_aggregate(l),
|
||||||
drop database(l),
|
drop_database(l),
|
||||||
drop function(l),
|
drop_function(l),
|
||||||
drop index(l),
|
drop_index(l),
|
||||||
drop operator(l),
|
drop_operator(l),
|
||||||
drop rule(l),
|
drop_rule(l),
|
||||||
drop sequence(l),
|
drop_sequence(l),
|
||||||
drop trigger(l),
|
drop_trigger(l),
|
||||||
drop type(l),
|
drop_type(l),
|
||||||
drop view(l).
|
drop_view(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_trigger.l,v 1.3 1998/01/11 22:17:32 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_trigger.l,v 1.4 1998/06/23 17:52:36 momjian Exp $
|
||||||
.TH "DROP TRIGGER" SQL 09/26/97 PostgreSQL
|
.TH "DROP TRIGGER" SQL 09/26/97 PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop trigger - destroy existing trigger
|
drop trigger - destroy existing trigger
|
||||||
@ -20,4 +20,4 @@ trigger.
|
|||||||
drop trigger empverify on emp
|
drop trigger empverify on emp
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create trigger(l).
|
create_trigger(l).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_type.l,v 1.5 1998/01/11 22:17:33 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_type.l,v 1.6 1998/06/23 17:52:37 momjian Exp $
|
||||||
.TH "DROP TYPE" SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH "DROP TYPE" SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop type - remove a user-defined type from the system catalogs
|
drop type - remove a user-defined type from the system catalogs
|
||||||
@ -24,7 +24,7 @@ drop type box
|
|||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
pgintro(1),
|
pgintro(1),
|
||||||
create type(l),
|
create_type(l),
|
||||||
drop operator(l).
|
drop_operator(l).
|
||||||
.SH "BUGS"
|
.SH "BUGS"
|
||||||
If a built-in type is removed, the behavior of the backend is unpredictable.
|
If a built-in type is removed, the behavior of the backend is unpredictable.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_view.l,v 1.2 1998/01/11 22:17:34 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_view.l,v 1.3 1998/06/23 17:52:37 momjian Exp $
|
||||||
.TH "DROP VIEW" SQL 04/25/94 PostgreSQL PostgreSQL
|
.TH "DROP VIEW" SQL 04/25/94 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
drop view - removes a view from Postgres
|
drop view - removes a view from Postgres
|
||||||
@ -19,5 +19,5 @@ execute this command you must be the owner of the view.
|
|||||||
drop view myview
|
drop view myview
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create view(l),
|
create_view(l),
|
||||||
drop rule(l),
|
drop_rule(l),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.9 1998/01/11 22:17:39 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.10 1998/06/23 17:52:37 momjian Exp $
|
||||||
.TH INSERT SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH INSERT SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
insert - insert tuples to a relation
|
insert - insert tuples to a relation
|
||||||
@ -110,7 +110,7 @@ insert into tictactoe (game, board)
|
|||||||
values (3,'{{,,},{,,},{,,}}')
|
values (3,'{{,,},{,,},{,,}}')
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create table(l),
|
create_table(l),
|
||||||
create type(l),
|
create_type(l),
|
||||||
update(l),
|
update(l),
|
||||||
select(l)
|
select(l)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/listen.l,v 1.4 1998/06/23 15:43:18 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/listen.l,v 1.5 1998/06/23 17:52:37 momjian Exp $
|
||||||
.TH "LISTEN" SQL 03/12/94 PostgreSQL PostgreSQL
|
.TH "LISTEN" SQL 03/12/94 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
listen - listen for notification on a relation
|
listen - listen for notification on a relation
|
||||||
@ -30,7 +30,7 @@ notification corresponds. If this code is not included in
|
|||||||
the application, the event notification will be queued and
|
the application, the event notification will be queued and
|
||||||
never be processed.
|
never be processed.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create rule(l),
|
create_rule(l),
|
||||||
notify(l),
|
notify(l),
|
||||||
select(l),
|
select(l),
|
||||||
libpq.
|
libpq.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/select.l,v 1.7 1998/06/17 22:59:26 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/select.l,v 1.8 1998/06/23 17:52:37 momjian Exp $
|
||||||
.TH SELECT SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH SELECT SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
select - retrieve instances from a class
|
select - retrieve instances from a class
|
||||||
@ -119,7 +119,7 @@ select 1.1 * emp.salary as salary
|
|||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
insert(l),
|
insert(l),
|
||||||
close(l),
|
close(l),
|
||||||
create table(l),
|
create_table(l),
|
||||||
fetch(l),
|
fetch(l),
|
||||||
update(l).
|
update(l).
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/update.l,v 1.4 1998/01/11 22:18:00 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/update.l,v 1.5 1998/06/23 17:52:38 momjian Exp $
|
||||||
.TH UPDATE SQL 11/05/95 PostgreSQL PostgreSQL
|
.TH UPDATE SQL 11/05/95 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
update - replace values of attributes in a class
|
update - replace values of attributes in a class
|
||||||
@ -39,5 +39,5 @@ update emp
|
|||||||
where mgr = 'Smith'
|
where mgr = 'Smith'
|
||||||
.fi
|
.fi
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
create table(l),
|
create_table(l),
|
||||||
select(l).
|
select(l).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user