1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

doc: Improve DocBook XML validity

DocBook XML is superficially compatible with DocBook SGML but has a
slightly stricter DTD that we have been violating in a few cases.
Although XSLT doesn't care whether the document is valid, the style
sheets don't necessarily process invalid documents correctly, so we need
to work toward fixing this.

This first commit moves the indexterms in refentry elements to an
allowed position.  It has no impact on the output.
This commit is contained in:
Peter Eisentraut 2014-02-23 21:25:35 -05:00
parent 769065c1b2
commit bb4eefe7bf
194 changed files with 1009 additions and 1009 deletions

View File

@ -19,6 +19,10 @@
</para> </para>
<refentry id="CONTRIB-DBLINK-CONNECT"> <refentry id="CONTRIB-DBLINK-CONNECT">
<indexterm>
<primary>dblink_connect</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_connect</refentrytitle> <refentrytitle>dblink_connect</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -29,10 +33,6 @@
<refpurpose>opens a persistent connection to a remote database</refpurpose> <refpurpose>opens a persistent connection to a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_connect</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_connect(text connstr) returns text dblink_connect(text connstr) returns text
@ -183,6 +183,10 @@ DROP SERVER fdtest;
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-CONNECT-U"> <refentry id="CONTRIB-DBLINK-CONNECT-U">
<indexterm>
<primary>dblink_connect_u</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_connect_u</refentrytitle> <refentrytitle>dblink_connect_u</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -193,10 +197,6 @@ DROP SERVER fdtest;
<refpurpose>opens a persistent connection to a remote database, insecurely</refpurpose> <refpurpose>opens a persistent connection to a remote database, insecurely</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_connect_u</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_connect_u(text connstr) returns text dblink_connect_u(text connstr) returns text
@ -240,6 +240,10 @@ dblink_connect_u(text connname, text connstr) returns text
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-DISCONNECT"> <refentry id="CONTRIB-DBLINK-DISCONNECT">
<indexterm>
<primary>dblink_disconnect</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_disconnect</refentrytitle> <refentrytitle>dblink_disconnect</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -250,10 +254,6 @@ dblink_connect_u(text connname, text connstr) returns text
<refpurpose>closes a persistent connection to a remote database</refpurpose> <refpurpose>closes a persistent connection to a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_disconnect</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_disconnect() returns text dblink_disconnect() returns text
@ -315,6 +315,10 @@ SELECT dblink_disconnect('myconn');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-FUNCTION"> <refentry id="CONTRIB-DBLINK-FUNCTION">
<indexterm>
<primary>dblink</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink</refentrytitle> <refentrytitle>dblink</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -325,10 +329,6 @@ SELECT dblink_disconnect('myconn');
<refpurpose>executes a query in a remote database</refpurpose> <refpurpose>executes a query in a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink(text connname, text sql [, bool fail_on_error]) returns setof record dblink(text connname, text sql [, bool fail_on_error]) returns setof record
@ -533,6 +533,10 @@ SELECT * FROM dblink('myconn', 'select proname, prosrc from pg_proc')
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-EXEC"> <refentry id="CONTRIB-DBLINK-EXEC">
<indexterm>
<primary>dblink_exec</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_exec</refentrytitle> <refentrytitle>dblink_exec</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -543,10 +547,6 @@ SELECT * FROM dblink('myconn', 'select proname, prosrc from pg_proc')
<refpurpose>executes a command in a remote database</refpurpose> <refpurpose>executes a command in a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_exec</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_exec(text connname, text sql [, bool fail_on_error]) returns text dblink_exec(text connname, text sql [, bool fail_on_error]) returns text
@ -670,6 +670,10 @@ DETAIL: ERROR: null value in column "relnamespace" violates not-null constrain
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-OPEN"> <refentry id="CONTRIB-DBLINK-OPEN">
<indexterm>
<primary>dblink_open</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_open</refentrytitle> <refentrytitle>dblink_open</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -680,10 +684,6 @@ DETAIL: ERROR: null value in column "relnamespace" violates not-null constrain
<refpurpose>opens a cursor in a remote database</refpurpose> <refpurpose>opens a cursor in a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_open</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_open(text cursorname, text sql [, bool fail_on_error]) returns text dblink_open(text cursorname, text sql [, bool fail_on_error]) returns text
@ -794,6 +794,10 @@ SELECT dblink_open('foo', 'select proname, prosrc from pg_proc');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-FETCH"> <refentry id="CONTRIB-DBLINK-FETCH">
<indexterm>
<primary>dblink_fetch</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_fetch</refentrytitle> <refentrytitle>dblink_fetch</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -804,10 +808,6 @@ SELECT dblink_open('foo', 'select proname, prosrc from pg_proc');
<refpurpose>returns rows from an open cursor in a remote database</refpurpose> <refpurpose>returns rows from an open cursor in a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_fetch</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_fetch(text cursorname, int howmany [, bool fail_on_error]) returns setof record dblink_fetch(text cursorname, int howmany [, bool fail_on_error]) returns setof record
@ -947,6 +947,10 @@ SELECT * FROM dblink_fetch('foo', 5) AS (funcname name, source text);
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-CLOSE"> <refentry id="CONTRIB-DBLINK-CLOSE">
<indexterm>
<primary>dblink_close</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_close</refentrytitle> <refentrytitle>dblink_close</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -957,10 +961,6 @@ SELECT * FROM dblink_fetch('foo', 5) AS (funcname name, source text);
<refpurpose>closes a cursor in a remote database</refpurpose> <refpurpose>closes a cursor in a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_close</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_close(text cursorname [, bool fail_on_error]) returns text dblink_close(text cursorname [, bool fail_on_error]) returns text
@ -1058,6 +1058,10 @@ SELECT dblink_close('foo');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-GET-CONNECTIONS"> <refentry id="CONTRIB-DBLINK-GET-CONNECTIONS">
<indexterm>
<primary>dblink_get_connections</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_get_connections</refentrytitle> <refentrytitle>dblink_get_connections</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1068,10 +1072,6 @@ SELECT dblink_close('foo');
<refpurpose>returns the names of all open named dblink connections</refpurpose> <refpurpose>returns the names of all open named dblink connections</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_get_connections</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_get_connections() returns text[] dblink_get_connections() returns text[]
@ -1103,6 +1103,10 @@ SELECT dblink_get_connections();
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-ERROR-MESSAGE"> <refentry id="CONTRIB-DBLINK-ERROR-MESSAGE">
<indexterm>
<primary>dblink_error_message</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_error_message</refentrytitle> <refentrytitle>dblink_error_message</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1113,10 +1117,6 @@ SELECT dblink_get_connections();
<refpurpose>gets last error message on the named connection</refpurpose> <refpurpose>gets last error message on the named connection</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_error_message</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_error_message(text connname) returns text dblink_error_message(text connname) returns text
@ -1166,6 +1166,10 @@ SELECT dblink_error_message('dtest1');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-SEND-QUERY"> <refentry id="CONTRIB-DBLINK-SEND-QUERY">
<indexterm>
<primary>dblink_send_query</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_send_query</refentrytitle> <refentrytitle>dblink_send_query</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1176,10 +1180,6 @@ SELECT dblink_error_message('dtest1');
<refpurpose>sends an async query to a remote database</refpurpose> <refpurpose>sends an async query to a remote database</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_send_query</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_send_query(text connname, text sql) returns int dblink_send_query(text connname, text sql) returns int
@ -1248,6 +1248,10 @@ SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 &lt; 3');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-IS-BUSY"> <refentry id="CONTRIB-DBLINK-IS-BUSY">
<indexterm>
<primary>dblink_is_busy</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_is_busy</refentrytitle> <refentrytitle>dblink_is_busy</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1258,10 +1262,6 @@ SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 &lt; 3');
<refpurpose>checks if connection is busy with an async query</refpurpose> <refpurpose>checks if connection is busy with an async query</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_is_busy</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_is_busy(text connname) returns int dblink_is_busy(text connname) returns int
@ -1311,6 +1311,10 @@ SELECT dblink_is_busy('dtest1');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-GET-NOTIFY"> <refentry id="CONTRIB-DBLINK-GET-NOTIFY">
<indexterm>
<primary>dblink_get_notify</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_get_notify</refentrytitle> <refentrytitle>dblink_get_notify</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1321,10 +1325,6 @@ SELECT dblink_is_busy('dtest1');
<refpurpose>retrieve async notifications on a connection</refpurpose> <refpurpose>retrieve async notifications on a connection</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_get_notify</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_get_notify() returns setof (notify_name text, be_pid int, extra text) dblink_get_notify() returns setof (notify_name text, be_pid int, extra text)
@ -1393,6 +1393,10 @@ SELECT * FROM dblink_get_notify();
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-GET-RESULT"> <refentry id="CONTRIB-DBLINK-GET-RESULT">
<indexterm>
<primary>dblink_get_result</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_get_result</refentrytitle> <refentrytitle>dblink_get_result</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1403,10 +1407,6 @@ SELECT * FROM dblink_get_notify();
<refpurpose>gets an async query result</refpurpose> <refpurpose>gets an async query result</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_get_result</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_get_result(text connname [, bool fail_on_error]) returns setof record dblink_get_result(text connname [, bool fail_on_error]) returns setof record
@ -1557,6 +1557,10 @@ contrib_regression=# SELECT * FROM dblink_get_result('dtest1') AS t1(f1 int, f2
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-CANCEL-QUERY"> <refentry id="CONTRIB-DBLINK-CANCEL-QUERY">
<indexterm>
<primary>dblink_cancel_query</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_cancel_query</refentrytitle> <refentrytitle>dblink_cancel_query</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1567,10 +1571,6 @@ contrib_regression=# SELECT * FROM dblink_get_result('dtest1') AS t1(f1 int, f2
<refpurpose>cancels any active query on the named connection</refpurpose> <refpurpose>cancels any active query on the named connection</refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_cancel_query</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_cancel_query(text connname) returns text dblink_cancel_query(text connname) returns text
@ -1625,6 +1625,10 @@ SELECT dblink_cancel_query('dtest1');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-GET-PKEY"> <refentry id="CONTRIB-DBLINK-GET-PKEY">
<indexterm>
<primary>dblink_get_pkey</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_get_pkey</refentrytitle> <refentrytitle>dblink_get_pkey</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1637,10 +1641,6 @@ SELECT dblink_cancel_query('dtest1');
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_get_pkey</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_get_pkey(text relname) returns setof dblink_pkey_results dblink_get_pkey(text relname) returns setof dblink_pkey_results
@ -1717,6 +1717,10 @@ SELECT * FROM dblink_get_pkey('foobar');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-BUILD-SQL-INSERT"> <refentry id="CONTRIB-DBLINK-BUILD-SQL-INSERT">
<indexterm>
<primary>dblink_build_sql_insert</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_build_sql_insert</refentrytitle> <refentrytitle>dblink_build_sql_insert</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1730,10 +1734,6 @@ SELECT * FROM dblink_get_pkey('foobar');
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_build_sql_insert</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_build_sql_insert(text relname, dblink_build_sql_insert(text relname,
@ -1852,6 +1852,10 @@ SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-BUILD-SQL-DELETE"> <refentry id="CONTRIB-DBLINK-BUILD-SQL-DELETE">
<indexterm>
<primary>dblink_build_sql_delete</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_build_sql_delete</refentrytitle> <refentrytitle>dblink_build_sql_delete</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1864,10 +1868,6 @@ SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_build_sql_delete</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_build_sql_delete(text relname, dblink_build_sql_delete(text relname,
@ -1970,6 +1970,10 @@ SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
</refentry> </refentry>
<refentry id="CONTRIB-DBLINK-BUILD-SQL-UPDATE"> <refentry id="CONTRIB-DBLINK-BUILD-SQL-UPDATE">
<indexterm>
<primary>dblink_build_sql_update</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>dblink_build_sql_update</refentrytitle> <refentrytitle>dblink_build_sql_update</refentrytitle>
<manvolnum>3</manvolnum> <manvolnum>3</manvolnum>
@ -1982,10 +1986,6 @@ SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm>
<primary>dblink_build_sql_update</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
dblink_build_sql_update(text relname, dblink_build_sql_update(text relname,

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/oid2name.sgml --> <!-- doc/src/sgml/oid2name.sgml -->
<refentry id="oid2name"> <refentry id="oid2name">
<indexterm zone="oid2name">
<primary>oid2name</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>oid2name</refentrytitle> <refentrytitle>oid2name</refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>resolve OIDs and file nodes in a <productname>PostgreSQL</productname> data directory</refpurpose> <refpurpose>resolve OIDs and file nodes in a <productname>PostgreSQL</productname> data directory</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="oid2name">
<primary>oid2name</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>oid2name</command> <command>oid2name</command>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="pgxlogdump"> <refentry id="pgxlogdump">
<indexterm zone="pgxlogdump">
<primary>pg_xlogdump</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pg_xlogdump</application></refentrytitle> <refentrytitle><application>pg_xlogdump</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>Display a human-readable rendering of the write-ahead log of a <productname>PostgreSQL</productname> database cluster</refpurpose> <refpurpose>Display a human-readable rendering of the write-ahead log of a <productname>PostgreSQL</productname> database cluster</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgxlogdump">
<primary>pg_xlogdump</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pg_xlogdump</command> <command>pg_xlogdump</command>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/pgarchivecleanup.sgml --> <!-- doc/src/sgml/pgarchivecleanup.sgml -->
<refentry id="pgarchivecleanup"> <refentry id="pgarchivecleanup">
<indexterm zone="pgarchivecleanup">
<primary>pg_archivecleanup</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pg_archivecleanup</application></refentrytitle> <refentrytitle><application>pg_archivecleanup</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>clean up <productname>PostgreSQL</productname> WAL archive files</refpurpose> <refpurpose>clean up <productname>PostgreSQL</productname> WAL archive files</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgarchivecleanup">
<primary>pg_archivecleanup</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pg_archivecleanup</command> <command>pg_archivecleanup</command>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/pgbench.sgml --> <!-- doc/src/sgml/pgbench.sgml -->
<refentry id="pgbench"> <refentry id="pgbench">
<indexterm zone="pgbench">
<primary>pgbench</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pgbench</application></refentrytitle> <refentrytitle><application>pgbench</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>run a benchmark test on <productname>PostgreSQL</productname></refpurpose> <refpurpose>run a benchmark test on <productname>PostgreSQL</productname></refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgbench">
<primary>pgbench</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pgbench</command> <command>pgbench</command>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/pgstandby.sgml --> <!-- doc/src/sgml/pgstandby.sgml -->
<refentry id="pgstandby"> <refentry id="pgstandby">
<indexterm zone="pgstandby">
<primary>pg_standby</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pg_standby</application></refentrytitle> <refentrytitle><application>pg_standby</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>supports the creation of a <productname>PostgreSQL</productname> warm standby server</refpurpose> <refpurpose>supports the creation of a <productname>PostgreSQL</productname> warm standby server</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgstandby">
<primary>pg_standby</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pg_standby</command> <command>pg_standby</command>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/pgtestfsync.sgml --> <!-- doc/src/sgml/pgtestfsync.sgml -->
<refentry id="pgtestfsync"> <refentry id="pgtestfsync">
<indexterm zone="pgtestfsync">
<primary>pg_test_fsync</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pg_test_fsync</application></refentrytitle> <refentrytitle><application>pg_test_fsync</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>determine fastest wal_sync_method for <productname>PostgreSQL</productname></refpurpose> <refpurpose>determine fastest wal_sync_method for <productname>PostgreSQL</productname></refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgtestfsync">
<primary>pg_test_fsync</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pg_test_fsync</command> <command>pg_test_fsync</command>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/pgtesttiming.sgml --> <!-- doc/src/sgml/pgtesttiming.sgml -->
<refentry id="pgtesttiming"> <refentry id="pgtesttiming">
<indexterm zone="pgtesttiming">
<primary>pg_test_timing</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pg_test_timing</application></refentrytitle> <refentrytitle><application>pg_test_timing</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>measure timing overhead</refpurpose> <refpurpose>measure timing overhead</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgtesttiming">
<primary>pg_test_timing</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pg_test_timing</command> <command>pg_test_timing</command>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/pgupgrade.sgml --> <!-- doc/src/sgml/pgupgrade.sgml -->
<refentry id="pgupgrade"> <refentry id="pgupgrade">
<indexterm zone="pgupgrade">
<primary>pg_upgrade</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>pg_upgrade</application></refentrytitle> <refentrytitle><application>pg_upgrade</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>upgrade a <productname>PostgreSQL</productname> server instance</refpurpose> <refpurpose>upgrade a <productname>PostgreSQL</productname> server instance</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="pgupgrade">
<primary>pg_upgrade</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>pg_upgrade</command> <command>pg_upgrade</command>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ABORT"> <refentry id="SQL-ABORT">
<indexterm zone="sql-abort">
<primary>ABORT</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ABORT</refentrytitle> <refentrytitle>ABORT</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>abort the current transaction</refpurpose> <refpurpose>abort the current transaction</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-abort">
<primary>ABORT</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ABORT [ WORK | TRANSACTION ] ABORT [ WORK | TRANSACTION ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERAGGREGATE"> <refentry id="SQL-ALTERAGGREGATE">
<indexterm zone="sql-alteraggregate">
<primary>ALTER AGGREGATE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER AGGREGATE</refentrytitle> <refentrytitle>ALTER AGGREGATE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of an aggregate function</refpurpose> <refpurpose>change the definition of an aggregate function</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alteraggregate">
<primary>ALTER AGGREGATE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER AGGREGATE <replaceable>name</replaceable> ( <replaceable>aggregate_signature</replaceable> ) RENAME TO <replaceable>new_name</replaceable> ALTER AGGREGATE <replaceable>name</replaceable> ( <replaceable>aggregate_signature</replaceable> ) RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERCOLLATION"> <refentry id="SQL-ALTERCOLLATION">
<indexterm zone="sql-altercollation">
<primary>ALTER COLLATION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER COLLATION</refentrytitle> <refentrytitle>ALTER COLLATION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a collation</refpurpose> <refpurpose>change the definition of a collation</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altercollation">
<primary>ALTER COLLATION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER COLLATION <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER COLLATION <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERCONVERSION"> <refentry id="SQL-ALTERCONVERSION">
<indexterm zone="sql-alterconversion">
<primary>ALTER CONVERSION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER CONVERSION</refentrytitle> <refentrytitle>ALTER CONVERSION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a conversion</refpurpose> <refpurpose>change the definition of a conversion</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterconversion">
<primary>ALTER CONVERSION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER CONVERSION <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER CONVERSION <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERDATABASE"> <refentry id="SQL-ALTERDATABASE">
<indexterm zone="sql-alterdatabase">
<primary>ALTER DATABASE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER DATABASE</refentrytitle> <refentrytitle>ALTER DATABASE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change a database</refpurpose> <refpurpose>change a database</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterdatabase">
<primary>ALTER DATABASE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ] ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERDEFAULTPRIVILEGES"> <refentry id="SQL-ALTERDEFAULTPRIVILEGES">
<indexterm zone="sql-alterdefaultprivileges">
<primary>ALTER DEFAULT PRIVILEGES</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER DEFAULT PRIVILEGES</refentrytitle> <refentrytitle>ALTER DEFAULT PRIVILEGES</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define default access privileges</refpurpose> <refpurpose>define default access privileges</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterdefaultprivileges">
<primary>ALTER DEFAULT PRIVILEGES</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER DEFAULT PRIVILEGES ALTER DEFAULT PRIVILEGES

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERDOMAIN"> <refentry id="SQL-ALTERDOMAIN">
<indexterm zone="sql-alterdomain">
<primary>ALTER DOMAIN</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER DOMAIN</refentrytitle> <refentrytitle>ALTER DOMAIN</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -17,10 +21,6 @@ PostgreSQL documentation
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterdomain">
<primary>ALTER DOMAIN</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable> ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTEREVENTTRIGGER"> <refentry id="SQL-ALTEREVENTTRIGGER">
<indexterm zone="sql-altereventtrigger">
<primary>ALTER EVENT TRIGGER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER EVENT TRIGGER</refentrytitle> <refentrytitle>ALTER EVENT TRIGGER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of an event trigger</refpurpose> <refpurpose>change the definition of an event trigger</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altereventtrigger">
<primary>ALTER EVENT TRIGGER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> DISABLE ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> DISABLE

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTEREXTENSION"> <refentry id="SQL-ALTEREXTENSION">
<indexterm zone="sql-alterextension">
<primary>ALTER EXTENSION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER EXTENSION</refentrytitle> <refentrytitle>ALTER EXTENSION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -17,10 +21,6 @@ PostgreSQL documentation
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterextension">
<primary>ALTER EXTENSION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER EXTENSION <replaceable class="PARAMETER">name</replaceable> UPDATE [ TO <replaceable class="PARAMETER">new_version</replaceable> ] ALTER EXTENSION <replaceable class="PARAMETER">name</replaceable> UPDATE [ TO <replaceable class="PARAMETER">new_version</replaceable> ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERFOREIGNDATAWRAPPER"> <refentry id="SQL-ALTERFOREIGNDATAWRAPPER">
<indexterm zone="sql-alterforeigndatawrapper">
<primary>ALTER FOREIGN DATA WRAPPER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER FOREIGN DATA WRAPPER</refentrytitle> <refentrytitle>ALTER FOREIGN DATA WRAPPER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a foreign-data wrapper</refpurpose> <refpurpose>change the definition of a foreign-data wrapper</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterforeigndatawrapper">
<primary>ALTER FOREIGN DATA WRAPPER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER FOREIGN DATA WRAPPER <replaceable class="parameter">name</replaceable> ALTER FOREIGN DATA WRAPPER <replaceable class="parameter">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERFOREIGNTABLE"> <refentry id="SQL-ALTERFOREIGNTABLE">
<indexterm zone="sql-alterforeigntable">
<primary>ALTER FOREIGN TABLE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER FOREIGN TABLE</refentrytitle> <refentrytitle>ALTER FOREIGN TABLE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a foreign table</refpurpose> <refpurpose>change the definition of a foreign table</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterforeigntable">
<primary>ALTER FOREIGN TABLE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> ALTER FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERFUNCTION"> <refentry id="SQL-ALTERFUNCTION">
<indexterm zone="sql-alterfunction">
<primary>ALTER FUNCTION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER FUNCTION</refentrytitle> <refentrytitle>ALTER FUNCTION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a function</refpurpose> <refpurpose>change the definition of a function</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterfunction">
<primary>ALTER FUNCTION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER FUNCTION <replaceable>name</replaceable> ( [ [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">argtype</replaceable> [, ...] ] ) ALTER FUNCTION <replaceable>name</replaceable> ( [ [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">argtype</replaceable> [, ...] ] )

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERGROUP"> <refentry id="SQL-ALTERGROUP">
<indexterm zone="sql-altergroup">
<primary>ALTER GROUP</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER GROUP</refentrytitle> <refentrytitle>ALTER GROUP</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change role name or membership</refpurpose> <refpurpose>change role name or membership</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altergroup">
<primary>ALTER GROUP</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER GROUP <replaceable class="PARAMETER">group_name</replaceable> ADD USER <replaceable class="PARAMETER">user_name</replaceable> [, ... ] ALTER GROUP <replaceable class="PARAMETER">group_name</replaceable> ADD USER <replaceable class="PARAMETER">user_name</replaceable> [, ... ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERINDEX"> <refentry id="SQL-ALTERINDEX">
<indexterm zone="sql-alterindex">
<primary>ALTER INDEX</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER INDEX</refentrytitle> <refentrytitle>ALTER INDEX</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of an index</refpurpose> <refpurpose>change the definition of an index</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterindex">
<primary>ALTER INDEX</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER INDEX [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable> ALTER INDEX [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERLANGUAGE"> <refentry id="SQL-ALTERLANGUAGE">
<indexterm zone="sql-alterlanguage">
<primary>ALTER LANGUAGE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER LANGUAGE</refentrytitle> <refentrytitle>ALTER LANGUAGE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a procedural language</refpurpose> <refpurpose>change the definition of a procedural language</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterlanguage">
<primary>ALTER LANGUAGE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER [ PROCEDURAL ] LANGUAGE <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER [ PROCEDURAL ] LANGUAGE <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERLARGEOBJECT"> <refentry id="SQL-ALTERLARGEOBJECT">
<indexterm zone="sql-alterlargeobject">
<primary>ALTER LARGE OBJECT</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER LARGE OBJECT</refentrytitle> <refentrytitle>ALTER LARGE OBJECT</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a large object</refpurpose> <refpurpose>change the definition of a large object</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterlargeobject">
<primary>ALTER LARGE OBJECT</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER LARGE OBJECT <replaceable class="PARAMETER">large_object_oid</replaceable> OWNER TO <replaceable>new_owner</replaceable> ALTER LARGE OBJECT <replaceable class="PARAMETER">large_object_oid</replaceable> OWNER TO <replaceable>new_owner</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERMATERIALIZEDVIEW"> <refentry id="SQL-ALTERMATERIALIZEDVIEW">
<indexterm zone="sql-altermaterializedview">
<primary>ALTER MATERIALIZED VIEW</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER MATERIALIZED VIEW</refentrytitle> <refentrytitle>ALTER MATERIALIZED VIEW</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a materialized view</refpurpose> <refpurpose>change the definition of a materialized view</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altermaterializedview">
<primary>ALTER MATERIALIZED VIEW</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER MATERIALIZED VIEW [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> ALTER MATERIALIZED VIEW [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTEROPCLASS"> <refentry id="SQL-ALTEROPCLASS">
<indexterm zone="sql-alteropclass">
<primary>ALTER OPERATOR CLASS</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER OPERATOR CLASS</refentrytitle> <refentrytitle>ALTER OPERATOR CLASS</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of an operator class</refpurpose> <refpurpose>change the definition of an operator class</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alteropclass">
<primary>ALTER OPERATOR CLASS</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER OPERATOR CLASS <replaceable>name</replaceable> USING <replaceable class="parameter">index_method</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER OPERATOR CLASS <replaceable>name</replaceable> USING <replaceable class="parameter">index_method</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTEROPERATOR"> <refentry id="SQL-ALTEROPERATOR">
<indexterm zone="sql-alteroperator">
<primary>ALTER OPERATOR</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER OPERATOR</refentrytitle> <refentrytitle>ALTER OPERATOR</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of an operator</refpurpose> <refpurpose>change the definition of an operator</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alteroperator">
<primary>ALTER OPERATOR</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER OPERATOR <replaceable>name</replaceable> ( { <replaceable>left_type</replaceable> | NONE } , { <replaceable>right_type</replaceable> | NONE } ) OWNER TO <replaceable>new_owner</replaceable> ALTER OPERATOR <replaceable>name</replaceable> ( { <replaceable>left_type</replaceable> | NONE } , { <replaceable>right_type</replaceable> | NONE } ) OWNER TO <replaceable>new_owner</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTEROPFAMILY"> <refentry id="SQL-ALTEROPFAMILY">
<indexterm zone="sql-alteropfamily">
<primary>ALTER OPERATOR FAMILY</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER OPERATOR FAMILY</refentrytitle> <refentrytitle>ALTER OPERATOR FAMILY</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of an operator family</refpurpose> <refpurpose>change the definition of an operator family</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alteropfamily">
<primary>ALTER OPERATOR FAMILY</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER OPERATOR FAMILY <replaceable>name</replaceable> USING <replaceable class="parameter">index_method</replaceable> ADD ALTER OPERATOR FAMILY <replaceable>name</replaceable> USING <replaceable class="parameter">index_method</replaceable> ADD

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERROLE"> <refentry id="SQL-ALTERROLE">
<indexterm zone="sql-alterrole">
<primary>ALTER ROLE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER ROLE</refentrytitle> <refentrytitle>ALTER ROLE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change a database role</refpurpose> <refpurpose>change a database role</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterrole">
<primary>ALTER ROLE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER ROLE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ] ALTER ROLE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERRULE"> <refentry id="SQL-ALTERRULE">
<indexterm zone="sql-alterrule">
<primary>ALTER RULE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER RULE</refentrytitle> <refentrytitle>ALTER RULE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a rule</refpurpose> <refpurpose>change the definition of a rule</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterrule">
<primary>ALTER RULE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER RULE <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable> ALTER RULE <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERSCHEMA"> <refentry id="SQL-ALTERSCHEMA">
<indexterm zone="sql-alterschema">
<primary>ALTER SCHEMA</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER SCHEMA</refentrytitle> <refentrytitle>ALTER SCHEMA</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a schema</refpurpose> <refpurpose>change the definition of a schema</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterschema">
<primary>ALTER SCHEMA</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER SCHEMA <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER SCHEMA <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERSEQUENCE"> <refentry id="SQL-ALTERSEQUENCE">
<indexterm zone="sql-altersequence">
<primary>ALTER SEQUENCE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER SEQUENCE</refentrytitle> <refentrytitle>ALTER SEQUENCE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -17,10 +21,6 @@ PostgreSQL documentation
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altersequence">
<primary>ALTER SEQUENCE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER SEQUENCE [ IF EXISTS ] <replaceable class="parameter">name</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ] ALTER SEQUENCE [ IF EXISTS ] <replaceable class="parameter">name</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERSERVER"> <refentry id="SQL-ALTERSERVER">
<indexterm zone="sql-alterserver">
<primary>ALTER SERVER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER SERVER</refentrytitle> <refentrytitle>ALTER SERVER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a foreign server</refpurpose> <refpurpose>change the definition of a foreign server</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterserver">
<primary>ALTER SERVER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER SERVER <replaceable class="parameter">name</replaceable> [ VERSION '<replaceable class="parameter">new_version</replaceable>' ] ALTER SERVER <replaceable class="parameter">name</replaceable> [ VERSION '<replaceable class="parameter">new_version</replaceable>' ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERSYSTEM"> <refentry id="SQL-ALTERSYSTEM">
<indexterm zone="sql-altersystem">
<primary>ALTER SYSTEM</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER SYSTEM</refentrytitle> <refentrytitle>ALTER SYSTEM</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change a server configuration parameter</refpurpose> <refpurpose>change a server configuration parameter</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altersystem">
<primary>ALTER SYSTEM</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER SYSTEM SET <replaceable class="PARAMETER">configuration_parameter</replaceable> { TO | = } { <replaceable class="PARAMETER">value</replaceable> | '<replaceable class="PARAMETER">value</replaceable>' | DEFAULT } ALTER SYSTEM SET <replaceable class="PARAMETER">configuration_parameter</replaceable> { TO | = } { <replaceable class="PARAMETER">value</replaceable> | '<replaceable class="PARAMETER">value</replaceable>' | DEFAULT }

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTABLE"> <refentry id="SQL-ALTERTABLE">
<indexterm zone="sql-altertable">
<primary>ALTER TABLE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TABLE</refentrytitle> <refentrytitle>ALTER TABLE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a table</refpurpose> <refpurpose>change the definition of a table</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertable">
<primary>ALTER TABLE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TABLE [ IF EXISTS ] [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ] ALTER TABLE [ IF EXISTS ] [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTABLESPACE"> <refentry id="SQL-ALTERTABLESPACE">
<indexterm zone="sql-altertablespace">
<primary>ALTER TABLESPACE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TABLESPACE</refentrytitle> <refentrytitle>ALTER TABLESPACE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a tablespace or affect objects of a tablespace</refpurpose> <refpurpose>change the definition of a tablespace or affect objects of a tablespace</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertablespace">
<primary>ALTER TABLESPACE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TABLESPACE <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER TABLESPACE <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTRIGGER"> <refentry id="SQL-ALTERTRIGGER">
<indexterm zone="sql-altertrigger">
<primary>ALTER TRIGGER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TRIGGER</refentrytitle> <refentrytitle>ALTER TRIGGER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a trigger</refpurpose> <refpurpose>change the definition of a trigger</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertrigger">
<primary>ALTER TRIGGER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable> ALTER TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTSCONFIG"> <refentry id="SQL-ALTERTSCONFIG">
<indexterm zone="sql-altertsconfig">
<primary>ALTER TEXT SEARCH CONFIGURATION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TEXT SEARCH CONFIGURATION</refentrytitle> <refentrytitle>ALTER TEXT SEARCH CONFIGURATION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a text search configuration</refpurpose> <refpurpose>change the definition of a text search configuration</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertsconfig">
<primary>ALTER TEXT SEARCH CONFIGURATION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TEXT SEARCH CONFIGURATION <replaceable>name</replaceable> ALTER TEXT SEARCH CONFIGURATION <replaceable>name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTSDICTIONARY"> <refentry id="SQL-ALTERTSDICTIONARY">
<indexterm zone="sql-altertsdictionary">
<primary>ALTER TEXT SEARCH DICTIONARY</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TEXT SEARCH DICTIONARY</refentrytitle> <refentrytitle>ALTER TEXT SEARCH DICTIONARY</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a text search dictionary</refpurpose> <refpurpose>change the definition of a text search dictionary</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertsdictionary">
<primary>ALTER TEXT SEARCH DICTIONARY</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TEXT SEARCH DICTIONARY <replaceable>name</replaceable> ( ALTER TEXT SEARCH DICTIONARY <replaceable>name</replaceable> (

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTSPARSER"> <refentry id="SQL-ALTERTSPARSER">
<indexterm zone="sql-altertsparser">
<primary>ALTER TEXT SEARCH PARSER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TEXT SEARCH PARSER</refentrytitle> <refentrytitle>ALTER TEXT SEARCH PARSER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a text search parser</refpurpose> <refpurpose>change the definition of a text search parser</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertsparser">
<primary>ALTER TEXT SEARCH PARSER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TEXT SEARCH PARSER <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER TEXT SEARCH PARSER <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTSTEMPLATE"> <refentry id="SQL-ALTERTSTEMPLATE">
<indexterm zone="sql-altertstemplate">
<primary>ALTER TEXT SEARCH TEMPLATE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TEXT SEARCH TEMPLATE</refentrytitle> <refentrytitle>ALTER TEXT SEARCH TEMPLATE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a text search template</refpurpose> <refpurpose>change the definition of a text search template</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertstemplate">
<primary>ALTER TEXT SEARCH TEMPLATE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TEXT SEARCH TEMPLATE <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable> ALTER TEXT SEARCH TEMPLATE <replaceable>name</replaceable> RENAME TO <replaceable>new_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERTYPE"> <refentry id="SQL-ALTERTYPE">
<indexterm zone="sql-altertype">
<primary>ALTER TYPE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER TYPE</refentrytitle> <refentrytitle>ALTER TYPE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -17,10 +21,6 @@ PostgreSQL documentation
</refpurpose> </refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-altertype">
<primary>ALTER TYPE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER TYPE <replaceable class="PARAMETER">name</replaceable> <replaceable class="PARAMETER">action</replaceable> [, ... ] ALTER TYPE <replaceable class="PARAMETER">name</replaceable> <replaceable class="PARAMETER">action</replaceable> [, ... ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERUSER"> <refentry id="SQL-ALTERUSER">
<indexterm zone="sql-alteruser">
<primary>ALTER USER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER USER</refentrytitle> <refentrytitle>ALTER USER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change a database role</refpurpose> <refpurpose>change a database role</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alteruser">
<primary>ALTER USER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ] ALTER USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERUSERMAPPING"> <refentry id="SQL-ALTERUSERMAPPING">
<indexterm zone="sql-alterusermapping">
<primary>ALTER USER MAPPING</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER USER MAPPING</refentrytitle> <refentrytitle>ALTER USER MAPPING</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a user mapping</refpurpose> <refpurpose>change the definition of a user mapping</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterusermapping">
<primary>ALTER USER MAPPING</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable> | USER | CURRENT_USER | PUBLIC } ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable> | USER | CURRENT_USER | PUBLIC }

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ALTERVIEW"> <refentry id="SQL-ALTERVIEW">
<indexterm zone="sql-alterview">
<primary>ALTER VIEW</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ALTER VIEW</refentrytitle> <refentrytitle>ALTER VIEW</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>change the definition of a view</refpurpose> <refpurpose>change the definition of a view</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-alterview">
<primary>ALTER VIEW</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ALTER VIEW [ IF EXISTS ] <replaceable class="parameter">name</replaceable> ALTER [ COLUMN ] <replaceable class="PARAMETER">column_name</replaceable> SET DEFAULT <replaceable class="PARAMETER">expression</replaceable> ALTER VIEW [ IF EXISTS ] <replaceable class="parameter">name</replaceable> ALTER [ COLUMN ] <replaceable class="PARAMETER">column_name</replaceable> SET DEFAULT <replaceable class="PARAMETER">expression</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-ANALYZE"> <refentry id="SQL-ANALYZE">
<indexterm zone="sql-analyze">
<primary>ANALYZE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>ANALYZE</refentrytitle> <refentrytitle>ANALYZE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>collect statistics about a database</refpurpose> <refpurpose>collect statistics about a database</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-analyze">
<primary>ANALYZE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table_name</replaceable> [ ( <replaceable class="PARAMETER">column_name</replaceable> [, ...] ) ] ] ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table_name</replaceable> [ ( <replaceable class="PARAMETER">column_name</replaceable> [, ...] ) ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-BEGIN"> <refentry id="SQL-BEGIN">
<indexterm zone="sql-begin">
<primary>BEGIN</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>BEGIN</refentrytitle> <refentrytitle>BEGIN</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>start a transaction block</refpurpose> <refpurpose>start a transaction block</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-begin">
<primary>BEGIN</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
BEGIN [ WORK | TRANSACTION ] [ <replaceable class="parameter">transaction_mode</replaceable> [, ...] ] BEGIN [ WORK | TRANSACTION ] [ <replaceable class="parameter">transaction_mode</replaceable> [, ...] ]

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/ref/checkpoint.sgml --> <!-- doc/src/sgml/ref/checkpoint.sgml -->
<refentry id="sql-checkpoint"> <refentry id="sql-checkpoint">
<indexterm zone="sql-checkpoint">
<primary>CHECKPOINT</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CHECKPOINT</refentrytitle> <refentrytitle>CHECKPOINT</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>force a transaction log checkpoint</refpurpose> <refpurpose>force a transaction log checkpoint</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-checkpoint">
<primary>CHECKPOINT</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CHECKPOINT CHECKPOINT

View File

@ -4,6 +4,15 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CLOSE"> <refentry id="SQL-CLOSE">
<indexterm zone="sql-close">
<primary>CLOSE</primary>
</indexterm>
<indexterm zone="sql-close">
<primary>cursor</primary>
<secondary>CLOSE</secondary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CLOSE</refentrytitle> <refentrytitle>CLOSE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,15 +24,6 @@ PostgreSQL documentation
<refpurpose>close a cursor</refpurpose> <refpurpose>close a cursor</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-close">
<primary>CLOSE</primary>
</indexterm>
<indexterm zone="sql-close">
<primary>cursor</primary>
<secondary>CLOSE</secondary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CLOSE { <replaceable class="PARAMETER">name</replaceable> | ALL } CLOSE { <replaceable class="PARAMETER">name</replaceable> | ALL }

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CLUSTER"> <refentry id="SQL-CLUSTER">
<indexterm zone="sql-cluster">
<primary>CLUSTER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CLUSTER</refentrytitle> <refentrytitle>CLUSTER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>cluster a table according to an index</refpurpose> <refpurpose>cluster a table according to an index</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-cluster">
<primary>CLUSTER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CLUSTER [VERBOSE] <replaceable class="PARAMETER">table_name</replaceable> [ USING <replaceable class="PARAMETER">index_name</replaceable> ] CLUSTER [VERBOSE] <replaceable class="PARAMETER">table_name</replaceable> [ USING <replaceable class="PARAMETER">index_name</replaceable> ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="APP-CLUSTERDB"> <refentry id="APP-CLUSTERDB">
<indexterm zone="app-clusterdb">
<primary>clusterdb</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>clusterdb</application></refentrytitle> <refentrytitle><application>clusterdb</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>cluster a <productname>PostgreSQL</productname> database</refpurpose> <refpurpose>cluster a <productname>PostgreSQL</productname> database</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="app-clusterdb">
<primary>clusterdb</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>clusterdb</command> <command>clusterdb</command>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-COMMENT"> <refentry id="SQL-COMMENT">
<indexterm zone="sql-comment">
<primary>COMMENT</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>COMMENT</refentrytitle> <refentrytitle>COMMENT</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define or change the comment of an object</refpurpose> <refpurpose>define or change the comment of an object</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-comment">
<primary>COMMENT</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
COMMENT ON COMMENT ON

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-COMMIT"> <refentry id="SQL-COMMIT">
<indexterm zone="sql-commit">
<primary>COMMIT</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>COMMIT</refentrytitle> <refentrytitle>COMMIT</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>commit the current transaction</refpurpose> <refpurpose>commit the current transaction</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-commit">
<primary>COMMIT</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
COMMIT [ WORK | TRANSACTION ] COMMIT [ WORK | TRANSACTION ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-COMMIT-PREPARED"> <refentry id="SQL-COMMIT-PREPARED">
<indexterm zone="sql-commit-prepared">
<primary>COMMIT PREPARED</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>COMMIT PREPARED</refentrytitle> <refentrytitle>COMMIT PREPARED</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>commit a transaction that was earlier prepared for two-phase commit</refpurpose> <refpurpose>commit a transaction that was earlier prepared for two-phase commit</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-commit-prepared">
<primary>COMMIT PREPARED</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
COMMIT PREPARED <replaceable class="PARAMETER">transaction_id</replaceable> COMMIT PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>

View File

@ -5,6 +5,10 @@ PostgreSQL documentation
<refentry id="SQL-COPY"> <refentry id="SQL-COPY">
<indexterm zone="sql-copy">
<primary>COPY</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>COPY</refentrytitle> <refentrytitle>COPY</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -16,10 +20,6 @@ PostgreSQL documentation
<refpurpose>copy data between a file and a table</refpurpose> <refpurpose>copy data between a file and a table</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-copy">
<primary>COPY</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
COPY <replaceable class="parameter">table_name</replaceable> [ ( <replaceable class="parameter">column_name</replaceable> [, ...] ) ] COPY <replaceable class="parameter">table_name</replaceable> [ ( <replaceable class="parameter">column_name</replaceable> [, ...] ) ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEAGGREGATE"> <refentry id="SQL-CREATEAGGREGATE">
<indexterm zone="sql-createaggregate">
<primary>CREATE AGGREGATE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE AGGREGATE</refentrytitle> <refentrytitle>CREATE AGGREGATE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new aggregate function</refpurpose> <refpurpose>define a new aggregate function</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createaggregate">
<primary>CREATE AGGREGATE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE AGGREGATE <replaceable class="parameter">name</replaceable> ( [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">arg_data_type</replaceable> [ , ... ] ) ( CREATE AGGREGATE <replaceable class="parameter">name</replaceable> ( [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">arg_data_type</replaceable> [ , ... ] ) (

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/ref/create_cast.sgml --> <!-- doc/src/sgml/ref/create_cast.sgml -->
<refentry id="SQL-CREATECAST"> <refentry id="SQL-CREATECAST">
<indexterm zone="sql-createcast">
<primary>CREATE CAST</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE CAST</refentrytitle> <refentrytitle>CREATE CAST</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>define a new cast</refpurpose> <refpurpose>define a new cast</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createcast">
<primary>CREATE CAST</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE CAST (<replaceable>source_type</replaceable> AS <replaceable>target_type</replaceable>) CREATE CAST (<replaceable>source_type</replaceable> AS <replaceable>target_type</replaceable>)

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/ref/create_collation.sgml --> <!-- doc/src/sgml/ref/create_collation.sgml -->
<refentry id="SQL-CREATECOLLATION"> <refentry id="SQL-CREATECOLLATION">
<indexterm zone="sql-createcollation">
<primary>CREATE COLLATION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE COLLATION</refentrytitle> <refentrytitle>CREATE COLLATION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>define a new collation</refpurpose> <refpurpose>define a new collation</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createcollation">
<primary>CREATE COLLATION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE COLLATION <replaceable>name</replaceable> ( CREATE COLLATION <replaceable>name</replaceable> (

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/ref/create_conversion.sgml --> <!-- doc/src/sgml/ref/create_conversion.sgml -->
<refentry id="SQL-CREATECONVERSION"> <refentry id="SQL-CREATECONVERSION">
<indexterm zone="sql-createconversion">
<primary>CREATE CONVERSION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE CONVERSION</refentrytitle> <refentrytitle>CREATE CONVERSION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>define a new encoding conversion</refpurpose> <refpurpose>define a new encoding conversion</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createconversion">
<primary>CREATE CONVERSION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ DEFAULT ] CONVERSION <replaceable>name</replaceable> CREATE [ DEFAULT ] CONVERSION <replaceable>name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEDATABASE"> <refentry id="SQL-CREATEDATABASE">
<indexterm zone="sql-createdatabase">
<primary>CREATE DATABASE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE DATABASE</refentrytitle> <refentrytitle>CREATE DATABASE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>create a new database</refpurpose> <refpurpose>create a new database</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createdatabase">
<primary>CREATE DATABASE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE DATABASE <replaceable class="PARAMETER">name</replaceable> CREATE DATABASE <replaceable class="PARAMETER">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEDOMAIN"> <refentry id="SQL-CREATEDOMAIN">
<indexterm zone="sql-createdomain">
<primary>CREATE DOMAIN</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE DOMAIN</refentrytitle> <refentrytitle>CREATE DOMAIN</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new domain</refpurpose> <refpurpose>define a new domain</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createdomain">
<primary>CREATE DOMAIN</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE DOMAIN <replaceable class="parameter">name</replaceable> [ AS ] <replaceable class="parameter">data_type</replaceable> CREATE DOMAIN <replaceable class="parameter">name</replaceable> [ AS ] <replaceable class="parameter">data_type</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEEVENTTRIGGER"> <refentry id="SQL-CREATEEVENTTRIGGER">
<indexterm zone="sql-createeventtrigger">
<primary>CREATE EVENT TRIGGER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE EVENT TRIGGER</refentrytitle> <refentrytitle>CREATE EVENT TRIGGER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new event trigger</refpurpose> <refpurpose>define a new event trigger</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createeventtrigger">
<primary>CREATE EVENT TRIGGER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> CREATE EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEEXTENSION"> <refentry id="SQL-CREATEEXTENSION">
<indexterm zone="sql-createextension">
<primary>CREATE EXTENSION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE EXTENSION</refentrytitle> <refentrytitle>CREATE EXTENSION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>install an extension</refpurpose> <refpurpose>install an extension</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createextension">
<primary>CREATE EXTENSION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE EXTENSION [ IF NOT EXISTS ] <replaceable class="parameter">extension_name</replaceable> CREATE EXTENSION [ IF NOT EXISTS ] <replaceable class="parameter">extension_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEFOREIGNDATAWRAPPER"> <refentry id="SQL-CREATEFOREIGNDATAWRAPPER">
<indexterm zone="sql-createforeigndatawrapper">
<primary>CREATE FOREIGN DATA WRAPPER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE FOREIGN DATA WRAPPER</refentrytitle> <refentrytitle>CREATE FOREIGN DATA WRAPPER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new foreign-data wrapper</refpurpose> <refpurpose>define a new foreign-data wrapper</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createforeigndatawrapper">
<primary>CREATE FOREIGN DATA WRAPPER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE FOREIGN DATA WRAPPER <replaceable class="parameter">name</replaceable> CREATE FOREIGN DATA WRAPPER <replaceable class="parameter">name</replaceable>

View File

@ -1,6 +1,10 @@
<!-- doc/src/sgml/ref/create_foreign_table.sgml --> <!-- doc/src/sgml/ref/create_foreign_table.sgml -->
<refentry id="SQL-CREATEFOREIGNTABLE"> <refentry id="SQL-CREATEFOREIGNTABLE">
<indexterm zone="sql-createforeigntable">
<primary>CREATE FOREIGN TABLE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE FOREIGN TABLE</refentrytitle> <refentrytitle>CREATE FOREIGN TABLE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -12,10 +16,6 @@
<refpurpose>define a new foreign table</refpurpose> <refpurpose>define a new foreign table</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createforeigntable">
<primary>CREATE FOREIGN TABLE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE FOREIGN TABLE [ IF NOT EXISTS ] <replaceable class="PARAMETER">table_name</replaceable> ( [ CREATE FOREIGN TABLE [ IF NOT EXISTS ] <replaceable class="PARAMETER">table_name</replaceable> ( [

View File

@ -3,6 +3,10 @@ doc/src/sgml/ref/create_function.sgml
--> -->
<refentry id="SQL-CREATEFUNCTION"> <refentry id="SQL-CREATEFUNCTION">
<indexterm zone="sql-createfunction">
<primary>CREATE FUNCTION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE FUNCTION</refentrytitle> <refentrytitle>CREATE FUNCTION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -14,10 +18,6 @@ doc/src/sgml/ref/create_function.sgml
<refpurpose>define a new function</refpurpose> <refpurpose>define a new function</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createfunction">
<primary>CREATE FUNCTION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ OR REPLACE ] FUNCTION CREATE [ OR REPLACE ] FUNCTION

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEGROUP"> <refentry id="SQL-CREATEGROUP">
<indexterm zone="sql-creategroup">
<primary>CREATE GROUP</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE GROUP</refentrytitle> <refentrytitle>CREATE GROUP</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new database role</refpurpose> <refpurpose>define a new database role</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-creategroup">
<primary>CREATE GROUP</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE GROUP <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ] CREATE GROUP <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEINDEX"> <refentry id="SQL-CREATEINDEX">
<indexterm zone="sql-createindex">
<primary>CREATE INDEX</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE INDEX</refentrytitle> <refentrytitle>CREATE INDEX</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new index</refpurpose> <refpurpose>define a new index</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createindex">
<primary>CREATE INDEX</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ <replaceable class="parameter">name</replaceable> ] ON <replaceable class="parameter">table_name</replaceable> [ USING <replaceable class="parameter">method</replaceable> ] CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ <replaceable class="parameter">name</replaceable> ] ON <replaceable class="parameter">table_name</replaceable> [ USING <replaceable class="parameter">method</replaceable> ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATELANGUAGE"> <refentry id="SQL-CREATELANGUAGE">
<indexterm zone="sql-createlanguage">
<primary>CREATE LANGUAGE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE LANGUAGE</refentrytitle> <refentrytitle>CREATE LANGUAGE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new procedural language</refpurpose> <refpurpose>define a new procedural language</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createlanguage">
<primary>CREATE LANGUAGE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ OR REPLACE ] [ PROCEDURAL ] LANGUAGE <replaceable class="parameter">name</replaceable> CREATE [ OR REPLACE ] [ PROCEDURAL ] LANGUAGE <replaceable class="parameter">name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEMATERIALIZEDVIEW"> <refentry id="SQL-CREATEMATERIALIZEDVIEW">
<indexterm zone="sql-creatematerializedview">
<primary>CREATE MATERIALIZED VIEW</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE MATERIALIZED VIEW</refentrytitle> <refentrytitle>CREATE MATERIALIZED VIEW</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new materialized view</refpurpose> <refpurpose>define a new materialized view</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-creatematerializedview">
<primary>CREATE MATERIALIZED VIEW</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE MATERIALIZED VIEW <replaceable>table_name</replaceable> CREATE MATERIALIZED VIEW <replaceable>table_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEOPCLASS"> <refentry id="SQL-CREATEOPCLASS">
<indexterm zone="sql-createopclass">
<primary>CREATE OPERATOR CLASS</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE OPERATOR CLASS</refentrytitle> <refentrytitle>CREATE OPERATOR CLASS</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new operator class</refpurpose> <refpurpose>define a new operator class</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createopclass">
<primary>CREATE OPERATOR CLASS</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE OPERATOR CLASS <replaceable class="parameter">name</replaceable> [ DEFAULT ] FOR TYPE <replaceable class="parameter">data_type</replaceable> CREATE OPERATOR CLASS <replaceable class="parameter">name</replaceable> [ DEFAULT ] FOR TYPE <replaceable class="parameter">data_type</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEOPERATOR"> <refentry id="SQL-CREATEOPERATOR">
<indexterm zone="sql-createoperator">
<primary>CREATE OPERATOR</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE OPERATOR</refentrytitle> <refentrytitle>CREATE OPERATOR</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new operator</refpurpose> <refpurpose>define a new operator</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createoperator">
<primary>CREATE OPERATOR</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE OPERATOR <replaceable>name</replaceable> ( CREATE OPERATOR <replaceable>name</replaceable> (

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEOPFAMILY"> <refentry id="SQL-CREATEOPFAMILY">
<indexterm zone="sql-createopfamily">
<primary>CREATE OPERATOR FAMILY</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE OPERATOR FAMILY</refentrytitle> <refentrytitle>CREATE OPERATOR FAMILY</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new operator family</refpurpose> <refpurpose>define a new operator family</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createopfamily">
<primary>CREATE OPERATOR FAMILY</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE OPERATOR FAMILY <replaceable class="parameter">name</replaceable> USING <replaceable class="parameter">index_method</replaceable> CREATE OPERATOR FAMILY <replaceable class="parameter">name</replaceable> USING <replaceable class="parameter">index_method</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEROLE"> <refentry id="SQL-CREATEROLE">
<indexterm zone="sql-createrole">
<primary>CREATE ROLE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE ROLE</refentrytitle> <refentrytitle>CREATE ROLE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new database role</refpurpose> <refpurpose>define a new database role</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createrole">
<primary>CREATE ROLE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE ROLE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ] CREATE ROLE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATERULE"> <refentry id="SQL-CREATERULE">
<indexterm zone="sql-createrule">
<primary>CREATE RULE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE RULE</refentrytitle> <refentrytitle>CREATE RULE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new rewrite rule</refpurpose> <refpurpose>define a new rewrite rule</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createrule">
<primary>CREATE RULE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ OR REPLACE ] RULE <replaceable class="parameter">name</replaceable> AS ON <replaceable class="parameter">event</replaceable> CREATE [ OR REPLACE ] RULE <replaceable class="parameter">name</replaceable> AS ON <replaceable class="parameter">event</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATESCHEMA"> <refentry id="SQL-CREATESCHEMA">
<indexterm zone="sql-createschema">
<primary>CREATE SCHEMA</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE SCHEMA</refentrytitle> <refentrytitle>CREATE SCHEMA</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new schema</refpurpose> <refpurpose>define a new schema</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createschema">
<primary>CREATE SCHEMA</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE SCHEMA <replaceable class="parameter">schema_name</replaceable> [ AUTHORIZATION <replaceable class="parameter">user_name</replaceable> ] [ <replaceable class="parameter">schema_element</replaceable> [ ... ] ] CREATE SCHEMA <replaceable class="parameter">schema_name</replaceable> [ AUTHORIZATION <replaceable class="parameter">user_name</replaceable> ] [ <replaceable class="parameter">schema_element</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATESEQUENCE"> <refentry id="SQL-CREATESEQUENCE">
<indexterm zone="sql-createsequence">
<primary>CREATE SEQUENCE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE SEQUENCE</refentrytitle> <refentrytitle>CREATE SEQUENCE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new sequence generator</refpurpose> <refpurpose>define a new sequence generator</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createsequence">
<primary>CREATE SEQUENCE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ TEMPORARY | TEMP ] SEQUENCE <replaceable class="parameter">name</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ] CREATE [ TEMPORARY | TEMP ] SEQUENCE <replaceable class="parameter">name</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATESERVER"> <refentry id="SQL-CREATESERVER">
<indexterm zone="sql-createserver">
<primary>CREATE SERVER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE SERVER</refentrytitle> <refentrytitle>CREATE SERVER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new foreign server</refpurpose> <refpurpose>define a new foreign server</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createserver">
<primary>CREATE SERVER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE SERVER <replaceable class="parameter">server_name</replaceable> [ TYPE '<replaceable class="parameter">server_type</replaceable>' ] [ VERSION '<replaceable class="parameter">server_version</replaceable>' ] CREATE SERVER <replaceable class="parameter">server_name</replaceable> [ TYPE '<replaceable class="parameter">server_type</replaceable>' ] [ VERSION '<replaceable class="parameter">server_version</replaceable>' ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETABLE"> <refentry id="SQL-CREATETABLE">
<indexterm zone="sql-createtable">
<primary>CREATE TABLE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TABLE</refentrytitle> <refentrytitle>CREATE TABLE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new table</refpurpose> <refpurpose>define a new table</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtable">
<primary>CREATE TABLE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXISTS ] <replaceable class="PARAMETER">table_name</replaceable> ( [ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXISTS ] <replaceable class="PARAMETER">table_name</replaceable> ( [

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETABLEAS"> <refentry id="SQL-CREATETABLEAS">
<indexterm zone="sql-createtableas">
<primary>CREATE TABLE AS</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TABLE AS</refentrytitle> <refentrytitle>CREATE TABLE AS</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new table from the results of a query</refpurpose> <refpurpose>define a new table from the results of a query</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtableas">
<primary>CREATE TABLE AS</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE <replaceable>table_name</replaceable> CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE <replaceable>table_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETABLESPACE"> <refentry id="SQL-CREATETABLESPACE">
<indexterm zone="sql-createtablespace">
<primary>CREATE TABLESPACE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TABLESPACE</refentrytitle> <refentrytitle>CREATE TABLESPACE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new tablespace</refpurpose> <refpurpose>define a new tablespace</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtablespace">
<primary>CREATE TABLESPACE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable> CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETRIGGER"> <refentry id="SQL-CREATETRIGGER">
<indexterm zone="sql-createtrigger">
<primary>CREATE TRIGGER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TRIGGER</refentrytitle> <refentrytitle>CREATE TRIGGER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new trigger</refpurpose> <refpurpose>define a new trigger</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtrigger">
<primary>CREATE TRIGGER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ CONSTRAINT ] TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTER | INSTEAD OF } { <replaceable class="PARAMETER">event</replaceable> [ OR ... ] } CREATE [ CONSTRAINT ] TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTER | INSTEAD OF } { <replaceable class="PARAMETER">event</replaceable> [ OR ... ] }

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETSCONFIG"> <refentry id="SQL-CREATETSCONFIG">
<indexterm zone="sql-createtsconfig">
<primary>CREATE TEXT SEARCH CONFIGURATION</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TEXT SEARCH CONFIGURATION</refentrytitle> <refentrytitle>CREATE TEXT SEARCH CONFIGURATION</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new text search configuration</refpurpose> <refpurpose>define a new text search configuration</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtsconfig">
<primary>CREATE TEXT SEARCH CONFIGURATION</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE TEXT SEARCH CONFIGURATION <replaceable class="parameter">name</replaceable> ( CREATE TEXT SEARCH CONFIGURATION <replaceable class="parameter">name</replaceable> (

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETSDICTIONARY"> <refentry id="SQL-CREATETSDICTIONARY">
<indexterm zone="sql-createtsdictionary">
<primary>CREATE TEXT SEARCH DICTIONARY</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TEXT SEARCH DICTIONARY</refentrytitle> <refentrytitle>CREATE TEXT SEARCH DICTIONARY</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new text search dictionary</refpurpose> <refpurpose>define a new text search dictionary</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtsdictionary">
<primary>CREATE TEXT SEARCH DICTIONARY</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE TEXT SEARCH DICTIONARY <replaceable class="parameter">name</replaceable> ( CREATE TEXT SEARCH DICTIONARY <replaceable class="parameter">name</replaceable> (

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETSPARSER"> <refentry id="SQL-CREATETSPARSER">
<indexterm zone="sql-createtsparser">
<primary>CREATE TEXT SEARCH PARSER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TEXT SEARCH PARSER</refentrytitle> <refentrytitle>CREATE TEXT SEARCH PARSER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new text search parser</refpurpose> <refpurpose>define a new text search parser</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtsparser">
<primary>CREATE TEXT SEARCH PARSER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE TEXT SEARCH PARSER <replaceable class="parameter">name</replaceable> ( CREATE TEXT SEARCH PARSER <replaceable class="parameter">name</replaceable> (

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETSTEMPLATE"> <refentry id="SQL-CREATETSTEMPLATE">
<indexterm zone="sql-createtstemplate">
<primary>CREATE TEXT SEARCH TEMPLATE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TEXT SEARCH TEMPLATE</refentrytitle> <refentrytitle>CREATE TEXT SEARCH TEMPLATE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new text search template</refpurpose> <refpurpose>define a new text search template</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtstemplate">
<primary>CREATE TEXT SEARCH TEMPLATE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE TEXT SEARCH TEMPLATE <replaceable class="parameter">name</replaceable> ( CREATE TEXT SEARCH TEMPLATE <replaceable class="parameter">name</replaceable> (

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATETYPE"> <refentry id="SQL-CREATETYPE">
<indexterm zone="sql-createtype">
<primary>CREATE TYPE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE TYPE</refentrytitle> <refentrytitle>CREATE TYPE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new data type</refpurpose> <refpurpose>define a new data type</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createtype">
<primary>CREATE TYPE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE TYPE <replaceable class="parameter">name</replaceable> AS CREATE TYPE <replaceable class="parameter">name</replaceable> AS

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEUSER"> <refentry id="SQL-CREATEUSER">
<indexterm zone="sql-createuser">
<primary>CREATE USER</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE USER</refentrytitle> <refentrytitle>CREATE USER</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new database role</refpurpose> <refpurpose>define a new database role</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createuser">
<primary>CREATE USER</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ] CREATE USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEUSERMAPPING"> <refentry id="SQL-CREATEUSERMAPPING">
<indexterm zone="sql-createusermapping">
<primary>CREATE USER MAPPING</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE USER MAPPING</refentrytitle> <refentrytitle>CREATE USER MAPPING</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new mapping of a user to a foreign server</refpurpose> <refpurpose>define a new mapping of a user to a foreign server</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createusermapping">
<primary>CREATE USER MAPPING</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable> | USER | CURRENT_USER | PUBLIC } CREATE USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable> | USER | CURRENT_USER | PUBLIC }

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-CREATEVIEW"> <refentry id="SQL-CREATEVIEW">
<indexterm zone="sql-createview">
<primary>CREATE VIEW</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>CREATE VIEW</refentrytitle> <refentrytitle>CREATE VIEW</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new view</refpurpose> <refpurpose>define a new view</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-createview">
<primary>CREATE VIEW</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW <replaceable class="PARAMETER">name</replaceable> [ ( <replaceable class="PARAMETER">column_name</replaceable> [, ...] ) ] CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW <replaceable class="PARAMETER">name</replaceable> [ ( <replaceable class="PARAMETER">column_name</replaceable> [, ...] ) ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="APP-CREATEDB"> <refentry id="APP-CREATEDB">
<indexterm zone="app-createdb">
<primary>createdb</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>createdb</application></refentrytitle> <refentrytitle><application>createdb</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>create a new <productname>PostgreSQL</productname> database</refpurpose> <refpurpose>create a new <productname>PostgreSQL</productname> database</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="app-createdb">
<primary>createdb</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>createdb</command> <command>createdb</command>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="APP-CREATELANG"> <refentry id="APP-CREATELANG">
<indexterm zone="app-createlang">
<primary>createlang</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>createlang</application></refentrytitle> <refentrytitle><application>createlang</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>install a <productname>PostgreSQL</productname> procedural language</refpurpose> <refpurpose>install a <productname>PostgreSQL</productname> procedural language</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="app-createlang">
<primary>createlang</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>createlang</command> <command>createlang</command>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="APP-CREATEUSER"> <refentry id="APP-CREATEUSER">
<indexterm zone="app-createuser">
<primary>createuser</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle><application>createuser</application></refentrytitle> <refentrytitle><application>createuser</application></refentrytitle>
<manvolnum>1</manvolnum> <manvolnum>1</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>define a new <productname>PostgreSQL</productname> user account</refpurpose> <refpurpose>define a new <productname>PostgreSQL</productname> user account</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="app-createuser">
<primary>createuser</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<cmdsynopsis> <cmdsynopsis>
<command>createuser</command> <command>createuser</command>

View File

@ -4,6 +4,15 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-DEALLOCATE"> <refentry id="SQL-DEALLOCATE">
<indexterm zone="sql-deallocate">
<primary>DEALLOCATE</primary>
</indexterm>
<indexterm zone="sql-deallocate">
<primary>prepared statements</primary>
<secondary>removing</secondary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>DEALLOCATE</refentrytitle> <refentrytitle>DEALLOCATE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,15 +24,6 @@ PostgreSQL documentation
<refpurpose>deallocate a prepared statement</refpurpose> <refpurpose>deallocate a prepared statement</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-deallocate">
<primary>DEALLOCATE</primary>
</indexterm>
<indexterm zone="sql-deallocate">
<primary>prepared statements</primary>
<secondary>removing</secondary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
DEALLOCATE [ PREPARE ] { <replaceable class="parameter">name</replaceable> | ALL } DEALLOCATE [ PREPARE ] { <replaceable class="parameter">name</replaceable> | ALL }

View File

@ -4,6 +4,15 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-DECLARE"> <refentry id="SQL-DECLARE">
<indexterm zone="sql-declare">
<primary>DECLARE</primary>
</indexterm>
<indexterm zone="sql-declare">
<primary>cursor</primary>
<secondary>DECLARE</secondary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>DECLARE</refentrytitle> <refentrytitle>DECLARE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,15 +24,6 @@ PostgreSQL documentation
<refpurpose>define a cursor</refpurpose> <refpurpose>define a cursor</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-declare">
<primary>DECLARE</primary>
</indexterm>
<indexterm zone="sql-declare">
<primary>cursor</primary>
<secondary>DECLARE</secondary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITIVE ] [ [ NO ] SCROLL ] DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITIVE ] [ [ NO ] SCROLL ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-DELETE"> <refentry id="SQL-DELETE">
<indexterm zone="sql-delete">
<primary>DELETE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>DELETE</refentrytitle> <refentrytitle>DELETE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>delete rows of a table</refpurpose> <refpurpose>delete rows of a table</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-delete">
<primary>DELETE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
[ WITH [ RECURSIVE ] <replaceable class="parameter">with_query</replaceable> [, ...] ] [ WITH [ RECURSIVE ] <replaceable class="parameter">with_query</replaceable> [, ...] ]

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-DISCARD"> <refentry id="SQL-DISCARD">
<indexterm zone="sql-discard">
<primary>DISCARD</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>DISCARD</refentrytitle> <refentrytitle>DISCARD</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>discard session state</refpurpose> <refpurpose>discard session state</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-discard">
<primary>DISCARD</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
DISCARD { ALL | PLANS | SEQUENCES | TEMPORARY | TEMP } DISCARD { ALL | PLANS | SEQUENCES | TEMPORARY | TEMP }

View File

@ -4,6 +4,14 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-DO"> <refentry id="SQL-DO">
<indexterm zone="sql-do">
<primary>DO</primary>
</indexterm>
<indexterm zone="sql-do">
<primary>anonymous code blocks</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>DO</refentrytitle> <refentrytitle>DO</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,14 +23,6 @@ PostgreSQL documentation
<refpurpose>execute an anonymous code block</refpurpose> <refpurpose>execute an anonymous code block</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-do">
<primary>DO</primary>
</indexterm>
<indexterm zone="sql-do">
<primary>anonymous code blocks</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
DO [ LANGUAGE <replaceable class="PARAMETER">lang_name</replaceable> ] <replaceable class="PARAMETER">code</replaceable> DO [ LANGUAGE <replaceable class="PARAMETER">lang_name</replaceable> ] <replaceable class="PARAMETER">code</replaceable>

View File

@ -4,6 +4,10 @@ PostgreSQL documentation
--> -->
<refentry id="SQL-DROPAGGREGATE"> <refentry id="SQL-DROPAGGREGATE">
<indexterm zone="sql-dropaggregate">
<primary>DROP AGGREGATE</primary>
</indexterm>
<refmeta> <refmeta>
<refentrytitle>DROP AGGREGATE</refentrytitle> <refentrytitle>DROP AGGREGATE</refentrytitle>
<manvolnum>7</manvolnum> <manvolnum>7</manvolnum>
@ -15,10 +19,6 @@ PostgreSQL documentation
<refpurpose>remove an aggregate function</refpurpose> <refpurpose>remove an aggregate function</refpurpose>
</refnamediv> </refnamediv>
<indexterm zone="sql-dropaggregate">
<primary>DROP AGGREGATE</primary>
</indexterm>
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
DROP AGGREGATE [ IF EXISTS ] <replaceable>name</replaceable> ( <replaceable>aggregate_signature</replaceable> ) [ CASCADE | RESTRICT ] DROP AGGREGATE [ IF EXISTS ] <replaceable>name</replaceable> ( <replaceable>aggregate_signature</replaceable> ) [ CASCADE | RESTRICT ]

Some files were not shown because too many files have changed in this diff Show More