diff --git a/doc/src/sgml/dblink.sgml b/doc/src/sgml/dblink.sgml
index a26e3786782..b07ac48c005 100644
--- a/doc/src/sgml/dblink.sgml
+++ b/doc/src/sgml/dblink.sgml
@@ -19,6 +19,10 @@
+
+ dblink_connect
+
+
dblink_connect
3
@@ -29,10 +33,6 @@
opens a persistent connection to a remote database
-
- dblink_connect
-
-
dblink_connect(text connstr) returns text
@@ -183,6 +183,10 @@ DROP SERVER fdtest;
+
+ dblink_connect_u
+
+
dblink_connect_u
3
@@ -193,10 +197,6 @@ DROP SERVER fdtest;
opens a persistent connection to a remote database, insecurely
-
- dblink_connect_u
-
-
dblink_connect_u(text connstr) returns text
@@ -240,6 +240,10 @@ dblink_connect_u(text connname, text connstr) returns text
+
+ dblink_disconnect
+
+
dblink_disconnect
3
@@ -250,10 +254,6 @@ dblink_connect_u(text connname, text connstr) returns text
closes a persistent connection to a remote database
-
- dblink_disconnect
-
-
dblink_disconnect() returns text
@@ -315,6 +315,10 @@ SELECT dblink_disconnect('myconn');
+
+ dblink
+
+
dblink
3
@@ -325,10 +329,6 @@ SELECT dblink_disconnect('myconn');
executes a query in a remote database
-
- dblink
-
-
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')
+
+ dblink_exec
+
+
dblink_exec
3
@@ -543,10 +547,6 @@ SELECT * FROM dblink('myconn', 'select proname, prosrc from pg_proc')
executes a command in a remote database
-
- dblink_exec
-
-
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
+
+ dblink_open
+
+
dblink_open
3
@@ -680,10 +684,6 @@ DETAIL: ERROR: null value in column "relnamespace" violates not-null constrain
opens a cursor in a remote database
-
- dblink_open
-
-
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');
+
+ dblink_fetch
+
+
dblink_fetch
3
@@ -804,10 +808,6 @@ SELECT dblink_open('foo', 'select proname, prosrc from pg_proc');
returns rows from an open cursor in a remote database
-
- dblink_fetch
-
-
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);
+
+ dblink_close
+
+
dblink_close
3
@@ -957,10 +961,6 @@ SELECT * FROM dblink_fetch('foo', 5) AS (funcname name, source text);
closes a cursor in a remote database
-
- dblink_close
-
-
dblink_close(text cursorname [, bool fail_on_error]) returns text
@@ -1058,6 +1058,10 @@ SELECT dblink_close('foo');
+
+ dblink_get_connections
+
+
dblink_get_connections
3
@@ -1068,10 +1072,6 @@ SELECT dblink_close('foo');
returns the names of all open named dblink connections
-
- dblink_get_connections
-
-
dblink_get_connections() returns text[]
@@ -1103,6 +1103,10 @@ SELECT dblink_get_connections();
+
+ dblink_error_message
+
+
dblink_error_message
3
@@ -1113,10 +1117,6 @@ SELECT dblink_get_connections();
gets last error message on the named connection
-
- dblink_error_message
-
-
dblink_error_message(text connname) returns text
@@ -1166,6 +1166,10 @@ SELECT dblink_error_message('dtest1');
+
+ dblink_send_query
+
+
dblink_send_query
3
@@ -1176,10 +1180,6 @@ SELECT dblink_error_message('dtest1');
sends an async query to a remote database
-
- dblink_send_query
-
-
dblink_send_query(text connname, text sql) returns int
@@ -1248,6 +1248,10 @@ SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 < 3');
+
+ dblink_is_busy
+
+
dblink_is_busy
3
@@ -1258,10 +1262,6 @@ SELECT dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 < 3');
checks if connection is busy with an async query
-
- dblink_is_busy
-
-
dblink_is_busy(text connname) returns int
@@ -1311,6 +1311,10 @@ SELECT dblink_is_busy('dtest1');
+
+ dblink_get_notify
+
+
dblink_get_notify
3
@@ -1321,10 +1325,6 @@ SELECT dblink_is_busy('dtest1');
retrieve async notifications on a connection
-
- dblink_get_notify
-
-
dblink_get_notify() returns setof (notify_name text, be_pid int, extra text)
@@ -1393,6 +1393,10 @@ SELECT * FROM dblink_get_notify();
+
+ dblink_get_result
+
+
dblink_get_result
3
@@ -1403,10 +1407,6 @@ SELECT * FROM dblink_get_notify();
gets an async query result
-
- dblink_get_result
-
-
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
+
+ dblink_cancel_query
+
+
dblink_cancel_query
3
@@ -1567,10 +1571,6 @@ contrib_regression=# SELECT * FROM dblink_get_result('dtest1') AS t1(f1 int, f2
cancels any active query on the named connection
-
- dblink_cancel_query
-
-
dblink_cancel_query(text connname) returns text
@@ -1625,6 +1625,10 @@ SELECT dblink_cancel_query('dtest1');
+
+ dblink_get_pkey
+
+
dblink_get_pkey
3
@@ -1637,10 +1641,6 @@ SELECT dblink_cancel_query('dtest1');
-
- dblink_get_pkey
-
-
dblink_get_pkey(text relname) returns setof dblink_pkey_results
@@ -1717,6 +1717,10 @@ SELECT * FROM dblink_get_pkey('foobar');
+
+ dblink_build_sql_insert
+
+
dblink_build_sql_insert
3
@@ -1730,10 +1734,6 @@ SELECT * FROM dblink_get_pkey('foobar');
-
- dblink_build_sql_insert
-
-
dblink_build_sql_insert(text relname,
@@ -1852,6 +1852,10 @@ SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
+
+ dblink_build_sql_delete
+
+
dblink_build_sql_delete
3
@@ -1864,10 +1868,6 @@ SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
-
- dblink_build_sql_delete
-
-
dblink_build_sql_delete(text relname,
@@ -1970,6 +1970,10 @@ SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
+
+ dblink_build_sql_update
+
+
dblink_build_sql_update
3
@@ -1982,10 +1986,6 @@ SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
-
- dblink_build_sql_update
-
-
dblink_build_sql_update(text relname,
diff --git a/doc/src/sgml/oid2name.sgml b/doc/src/sgml/oid2name.sgml
index 5e39677496b..97b170a23f7 100644
--- a/doc/src/sgml/oid2name.sgml
+++ b/doc/src/sgml/oid2name.sgml
@@ -1,6 +1,10 @@
+
+ oid2name
+
+
oid2name
1
@@ -12,10 +16,6 @@
resolve OIDs and file nodes in a PostgreSQL data directory
-
- oid2name
-
-
oid2name
diff --git a/doc/src/sgml/pg_xlogdump.sgml b/doc/src/sgml/pg_xlogdump.sgml
index 0f291413428..17396221198 100644
--- a/doc/src/sgml/pg_xlogdump.sgml
+++ b/doc/src/sgml/pg_xlogdump.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ pg_xlogdump
+
+
pg_xlogdump
1
@@ -15,10 +19,6 @@ PostgreSQL documentation
Display a human-readable rendering of the write-ahead log of a PostgreSQL database cluster
-
- pg_xlogdump
-
-
pg_xlogdump
diff --git a/doc/src/sgml/pgarchivecleanup.sgml b/doc/src/sgml/pgarchivecleanup.sgml
index 932914bc2f8..fdf0cbb9d1b 100644
--- a/doc/src/sgml/pgarchivecleanup.sgml
+++ b/doc/src/sgml/pgarchivecleanup.sgml
@@ -1,6 +1,10 @@
+
+ pg_archivecleanup
+
+
pg_archivecleanup
1
@@ -12,10 +16,6 @@
clean up PostgreSQL WAL archive files
-
- pg_archivecleanup
-
-
pg_archivecleanup
diff --git a/doc/src/sgml/pgbench.sgml b/doc/src/sgml/pgbench.sgml
index 05ca9b76abc..4367563a379 100644
--- a/doc/src/sgml/pgbench.sgml
+++ b/doc/src/sgml/pgbench.sgml
@@ -1,6 +1,10 @@
+
+ pgbench
+
+
pgbench
1
@@ -12,10 +16,6 @@
run a benchmark test on PostgreSQL
-
- pgbench
-
-
pgbench
diff --git a/doc/src/sgml/pgstandby.sgml b/doc/src/sgml/pgstandby.sgml
index ca2b5c078dc..fb3f32eaaa4 100644
--- a/doc/src/sgml/pgstandby.sgml
+++ b/doc/src/sgml/pgstandby.sgml
@@ -1,6 +1,10 @@
+
+ pg_standby
+
+
pg_standby
1
@@ -12,10 +16,6 @@
supports the creation of a PostgreSQL warm standby server
-
- pg_standby
-
-
pg_standby
diff --git a/doc/src/sgml/pgtestfsync.sgml b/doc/src/sgml/pgtestfsync.sgml
index 45f09191253..c4b4014b1a0 100644
--- a/doc/src/sgml/pgtestfsync.sgml
+++ b/doc/src/sgml/pgtestfsync.sgml
@@ -1,6 +1,10 @@
+
+ pg_test_fsync
+
+
pg_test_fsync
1
@@ -12,10 +16,6 @@
determine fastest wal_sync_method for PostgreSQL
-
- pg_test_fsync
-
-
pg_test_fsync
diff --git a/doc/src/sgml/pgtesttiming.sgml b/doc/src/sgml/pgtesttiming.sgml
index a2581d269c6..a6ab9b114bb 100644
--- a/doc/src/sgml/pgtesttiming.sgml
+++ b/doc/src/sgml/pgtesttiming.sgml
@@ -1,6 +1,10 @@
+
+ pg_test_timing
+
+
pg_test_timing
1
@@ -12,10 +16,6 @@
measure timing overhead
-
- pg_test_timing
-
-
pg_test_timing
diff --git a/doc/src/sgml/pgupgrade.sgml b/doc/src/sgml/pgupgrade.sgml
index 3da451cca22..4d03b12f119 100644
--- a/doc/src/sgml/pgupgrade.sgml
+++ b/doc/src/sgml/pgupgrade.sgml
@@ -1,6 +1,10 @@
+
+ pg_upgrade
+
+
pg_upgrade
1
@@ -12,10 +16,6 @@
upgrade a PostgreSQL server instance
-
- pg_upgrade
-
-
pg_upgrade
diff --git a/doc/src/sgml/ref/abort.sgml b/doc/src/sgml/ref/abort.sgml
index e9138d5702b..ed9332c395b 100644
--- a/doc/src/sgml/ref/abort.sgml
+++ b/doc/src/sgml/ref/abort.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ABORT
+
+
ABORT
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
abort the current transaction
-
- ABORT
-
-
ABORT [ WORK | TRANSACTION ]
diff --git a/doc/src/sgml/ref/alter_aggregate.sgml b/doc/src/sgml/ref/alter_aggregate.sgml
index 641d19ccebe..f92b8e5da37 100644
--- a/doc/src/sgml/ref/alter_aggregate.sgml
+++ b/doc/src/sgml/ref/alter_aggregate.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER AGGREGATE
+
+
ALTER AGGREGATE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of an aggregate function
-
- ALTER AGGREGATE
-
-
ALTER AGGREGATE name ( aggregate_signature ) RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_collation.sgml b/doc/src/sgml/ref/alter_collation.sgml
index ebb30b88607..11ecd93c205 100644
--- a/doc/src/sgml/ref/alter_collation.sgml
+++ b/doc/src/sgml/ref/alter_collation.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER COLLATION
+
+
ALTER COLLATION
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a collation
-
- ALTER COLLATION
-
-
ALTER COLLATION name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_conversion.sgml b/doc/src/sgml/ref/alter_conversion.sgml
index 4cc335b18e0..a3f68975bfe 100644
--- a/doc/src/sgml/ref/alter_conversion.sgml
+++ b/doc/src/sgml/ref/alter_conversion.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER CONVERSION
+
+
ALTER CONVERSION
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a conversion
-
- ALTER CONVERSION
-
-
ALTER CONVERSION name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_database.sgml b/doc/src/sgml/ref/alter_database.sgml
index 360732fd358..23ef75512f1 100644
--- a/doc/src/sgml/ref/alter_database.sgml
+++ b/doc/src/sgml/ref/alter_database.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER DATABASE
+
+
ALTER DATABASE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change a database
-
- ALTER DATABASE
-
-
ALTER DATABASE name [ [ WITH ] option [ ... ] ]
diff --git a/doc/src/sgml/ref/alter_default_privileges.sgml b/doc/src/sgml/ref/alter_default_privileges.sgml
index fdd9c83800e..04064d399cb 100644
--- a/doc/src/sgml/ref/alter_default_privileges.sgml
+++ b/doc/src/sgml/ref/alter_default_privileges.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER DEFAULT PRIVILEGES
+
+
ALTER DEFAULT PRIVILEGES
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
define default access privileges
-
- ALTER DEFAULT PRIVILEGES
-
-
ALTER DEFAULT PRIVILEGES
diff --git a/doc/src/sgml/ref/alter_domain.sgml b/doc/src/sgml/ref/alter_domain.sgml
index c59975af033..db7b8198350 100644
--- a/doc/src/sgml/ref/alter_domain.sgml
+++ b/doc/src/sgml/ref/alter_domain.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER DOMAIN
+
+
ALTER DOMAIN
7
@@ -17,10 +21,6 @@ PostgreSQL documentation
-
- ALTER DOMAIN
-
-
ALTER DOMAIN name
diff --git a/doc/src/sgml/ref/alter_event_trigger.sgml b/doc/src/sgml/ref/alter_event_trigger.sgml
index f53b0228bc9..1bf9d8abb60 100644
--- a/doc/src/sgml/ref/alter_event_trigger.sgml
+++ b/doc/src/sgml/ref/alter_event_trigger.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER EVENT TRIGGER
+
+
ALTER EVENT TRIGGER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of an event trigger
-
- ALTER EVENT TRIGGER
-
-
ALTER EVENT TRIGGER name DISABLE
diff --git a/doc/src/sgml/ref/alter_extension.sgml b/doc/src/sgml/ref/alter_extension.sgml
index 56fa30d2d3a..0d479c8ca2d 100644
--- a/doc/src/sgml/ref/alter_extension.sgml
+++ b/doc/src/sgml/ref/alter_extension.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER EXTENSION
+
+
ALTER EXTENSION
7
@@ -17,10 +21,6 @@ PostgreSQL documentation
-
- ALTER EXTENSION
-
-
ALTER EXTENSION name UPDATE [ TO new_version ]
diff --git a/doc/src/sgml/ref/alter_foreign_data_wrapper.sgml b/doc/src/sgml/ref/alter_foreign_data_wrapper.sgml
index 91ac1b2f0c9..1c82db9e038 100644
--- a/doc/src/sgml/ref/alter_foreign_data_wrapper.sgml
+++ b/doc/src/sgml/ref/alter_foreign_data_wrapper.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER FOREIGN DATA WRAPPER
+
+
ALTER FOREIGN DATA WRAPPER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a foreign-data wrapper
-
- ALTER FOREIGN DATA WRAPPER
-
-
ALTER FOREIGN DATA WRAPPER name
diff --git a/doc/src/sgml/ref/alter_foreign_table.sgml b/doc/src/sgml/ref/alter_foreign_table.sgml
index 723aa075c57..4d8cfc522e0 100644
--- a/doc/src/sgml/ref/alter_foreign_table.sgml
+++ b/doc/src/sgml/ref/alter_foreign_table.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER FOREIGN TABLE
+
+
ALTER FOREIGN TABLE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a foreign table
-
- ALTER FOREIGN TABLE
-
-
ALTER FOREIGN TABLE [ IF EXISTS ] name
diff --git a/doc/src/sgml/ref/alter_function.sgml b/doc/src/sgml/ref/alter_function.sgml
index 013b6f8401c..ba879eb1ea3 100644
--- a/doc/src/sgml/ref/alter_function.sgml
+++ b/doc/src/sgml/ref/alter_function.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER FUNCTION
+
+
ALTER FUNCTION
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a function
-
- ALTER FUNCTION
-
-
ALTER FUNCTION name ( [ [ argmode ] [ argname ] argtype [, ...] ] )
diff --git a/doc/src/sgml/ref/alter_group.sgml b/doc/src/sgml/ref/alter_group.sgml
index 177b11d28dd..143224286ab 100644
--- a/doc/src/sgml/ref/alter_group.sgml
+++ b/doc/src/sgml/ref/alter_group.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER GROUP
+
+
ALTER GROUP
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change role name or membership
-
- ALTER GROUP
-
-
ALTER GROUP group_name ADD USER user_name [, ... ]
diff --git a/doc/src/sgml/ref/alter_index.sgml b/doc/src/sgml/ref/alter_index.sgml
index d2100770361..94a7af0429c 100644
--- a/doc/src/sgml/ref/alter_index.sgml
+++ b/doc/src/sgml/ref/alter_index.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER INDEX
+
+
ALTER INDEX
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of an index
-
- ALTER INDEX
-
-
ALTER INDEX [ IF EXISTS ] name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_language.sgml b/doc/src/sgml/ref/alter_language.sgml
index ab23d624ba3..5c9ded6837f 100644
--- a/doc/src/sgml/ref/alter_language.sgml
+++ b/doc/src/sgml/ref/alter_language.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER LANGUAGE
+
+
ALTER LANGUAGE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a procedural language
-
- ALTER LANGUAGE
-
-
ALTER [ PROCEDURAL ] LANGUAGE name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_large_object.sgml b/doc/src/sgml/ref/alter_large_object.sgml
index bcf532c80ba..a6dabca1b2f 100644
--- a/doc/src/sgml/ref/alter_large_object.sgml
+++ b/doc/src/sgml/ref/alter_large_object.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER LARGE OBJECT
+
+
ALTER LARGE OBJECT
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a large object
-
- ALTER LARGE OBJECT
-
-
ALTER LARGE OBJECT large_object_oid OWNER TO new_owner
diff --git a/doc/src/sgml/ref/alter_materialized_view.sgml b/doc/src/sgml/ref/alter_materialized_view.sgml
index e5617067f67..1932eeb84d4 100644
--- a/doc/src/sgml/ref/alter_materialized_view.sgml
+++ b/doc/src/sgml/ref/alter_materialized_view.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER MATERIALIZED VIEW
+
+
ALTER MATERIALIZED VIEW
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a materialized view
-
- ALTER MATERIALIZED VIEW
-
-
ALTER MATERIALIZED VIEW [ IF EXISTS ] name
diff --git a/doc/src/sgml/ref/alter_opclass.sgml b/doc/src/sgml/ref/alter_opclass.sgml
index c70f6cd6a2b..fc41d866611 100644
--- a/doc/src/sgml/ref/alter_opclass.sgml
+++ b/doc/src/sgml/ref/alter_opclass.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER OPERATOR CLASS
+
+
ALTER OPERATOR CLASS
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of an operator class
-
- ALTER OPERATOR CLASS
-
-
ALTER OPERATOR CLASS name USING index_method RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_operator.sgml b/doc/src/sgml/ref/alter_operator.sgml
index 32bde5af7cf..60754163204 100644
--- a/doc/src/sgml/ref/alter_operator.sgml
+++ b/doc/src/sgml/ref/alter_operator.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER OPERATOR
+
+
ALTER OPERATOR
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of an operator
-
- ALTER OPERATOR
-
-
ALTER OPERATOR name ( { left_type | NONE } , { right_type | NONE } ) OWNER TO new_owner
diff --git a/doc/src/sgml/ref/alter_opfamily.sgml b/doc/src/sgml/ref/alter_opfamily.sgml
index aad968d284a..55b912611d9 100644
--- a/doc/src/sgml/ref/alter_opfamily.sgml
+++ b/doc/src/sgml/ref/alter_opfamily.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER OPERATOR FAMILY
+
+
ALTER OPERATOR FAMILY
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of an operator family
-
- ALTER OPERATOR FAMILY
-
-
ALTER OPERATOR FAMILY name USING index_method ADD
diff --git a/doc/src/sgml/ref/alter_role.sgml b/doc/src/sgml/ref/alter_role.sgml
index b0981fdd5d5..bcd46d5e4dc 100644
--- a/doc/src/sgml/ref/alter_role.sgml
+++ b/doc/src/sgml/ref/alter_role.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER ROLE
+
+
ALTER ROLE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change a database role
-
- ALTER ROLE
-
-
ALTER ROLE name [ [ WITH ] option [ ... ] ]
diff --git a/doc/src/sgml/ref/alter_rule.sgml b/doc/src/sgml/ref/alter_rule.sgml
index 0a186605a02..993a0ceb83f 100644
--- a/doc/src/sgml/ref/alter_rule.sgml
+++ b/doc/src/sgml/ref/alter_rule.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER RULE
+
+
ALTER RULE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a rule
-
- ALTER RULE
-
-
ALTER RULE name ON table_name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_schema.sgml b/doc/src/sgml/ref/alter_schema.sgml
index 020b113a32f..00395c02f85 100644
--- a/doc/src/sgml/ref/alter_schema.sgml
+++ b/doc/src/sgml/ref/alter_schema.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER SCHEMA
+
+
ALTER SCHEMA
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a schema
-
- ALTER SCHEMA
-
-
ALTER SCHEMA name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_sequence.sgml b/doc/src/sgml/ref/alter_sequence.sgml
index 204ca11f0ba..9ba9bc46229 100644
--- a/doc/src/sgml/ref/alter_sequence.sgml
+++ b/doc/src/sgml/ref/alter_sequence.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER SEQUENCE
+
+
ALTER SEQUENCE
7
@@ -17,10 +21,6 @@ PostgreSQL documentation
-
- ALTER SEQUENCE
-
-
ALTER SEQUENCE [ IF EXISTS ] name [ INCREMENT [ BY ] increment ]
diff --git a/doc/src/sgml/ref/alter_server.sgml b/doc/src/sgml/ref/alter_server.sgml
index 08afde1dd04..68253b91668 100644
--- a/doc/src/sgml/ref/alter_server.sgml
+++ b/doc/src/sgml/ref/alter_server.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER SERVER
+
+
ALTER SERVER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a foreign server
-
- ALTER SERVER
-
-
ALTER SERVER name [ VERSION 'new_version' ]
diff --git a/doc/src/sgml/ref/alter_system.sgml b/doc/src/sgml/ref/alter_system.sgml
index 3ccc6afd516..081b3722a0b 100644
--- a/doc/src/sgml/ref/alter_system.sgml
+++ b/doc/src/sgml/ref/alter_system.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER SYSTEM
+
+
ALTER SYSTEM
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change a server configuration parameter
-
- ALTER SYSTEM
-
-
ALTER SYSTEM SET configuration_parameter { TO | = } { value | 'value' | DEFAULT }
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml
index 89649a2aa48..2b02e668e08 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TABLE
+
+
ALTER TABLE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a table
-
- ALTER TABLE
-
-
ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ]
diff --git a/doc/src/sgml/ref/alter_tablespace.sgml b/doc/src/sgml/ref/alter_tablespace.sgml
index 99ee08a8da5..5c98bc7f067 100644
--- a/doc/src/sgml/ref/alter_tablespace.sgml
+++ b/doc/src/sgml/ref/alter_tablespace.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TABLESPACE
+
+
ALTER TABLESPACE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a tablespace or affect objects of a tablespace
-
- ALTER TABLESPACE
-
-
ALTER TABLESPACE name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_trigger.sgml b/doc/src/sgml/ref/alter_trigger.sgml
index 0d70167024a..c63b5dfa02b 100644
--- a/doc/src/sgml/ref/alter_trigger.sgml
+++ b/doc/src/sgml/ref/alter_trigger.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TRIGGER
+
+
ALTER TRIGGER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a trigger
-
- ALTER TRIGGER
-
-
ALTER TRIGGER name ON table_name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_tsconfig.sgml b/doc/src/sgml/ref/alter_tsconfig.sgml
index deef329b295..1a40d88f6a0 100644
--- a/doc/src/sgml/ref/alter_tsconfig.sgml
+++ b/doc/src/sgml/ref/alter_tsconfig.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TEXT SEARCH CONFIGURATION
+
+
ALTER TEXT SEARCH CONFIGURATION
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a text search configuration
-
- ALTER TEXT SEARCH CONFIGURATION
-
-
ALTER TEXT SEARCH CONFIGURATION name
diff --git a/doc/src/sgml/ref/alter_tsdictionary.sgml b/doc/src/sgml/ref/alter_tsdictionary.sgml
index 7c120370415..590c4fc6e1c 100644
--- a/doc/src/sgml/ref/alter_tsdictionary.sgml
+++ b/doc/src/sgml/ref/alter_tsdictionary.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TEXT SEARCH DICTIONARY
+
+
ALTER TEXT SEARCH DICTIONARY
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a text search dictionary
-
- ALTER TEXT SEARCH DICTIONARY
-
-
ALTER TEXT SEARCH DICTIONARY name (
diff --git a/doc/src/sgml/ref/alter_tsparser.sgml b/doc/src/sgml/ref/alter_tsparser.sgml
index 8c082433b05..e2b6060a17a 100644
--- a/doc/src/sgml/ref/alter_tsparser.sgml
+++ b/doc/src/sgml/ref/alter_tsparser.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TEXT SEARCH PARSER
+
+
ALTER TEXT SEARCH PARSER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a text search parser
-
- ALTER TEXT SEARCH PARSER
-
-
ALTER TEXT SEARCH PARSER name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_tstemplate.sgml b/doc/src/sgml/ref/alter_tstemplate.sgml
index e4f0ff3b1eb..e7ae91c0a08 100644
--- a/doc/src/sgml/ref/alter_tstemplate.sgml
+++ b/doc/src/sgml/ref/alter_tstemplate.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TEXT SEARCH TEMPLATE
+
+
ALTER TEXT SEARCH TEMPLATE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a text search template
-
- ALTER TEXT SEARCH TEMPLATE
-
-
ALTER TEXT SEARCH TEMPLATE name RENAME TO new_name
diff --git a/doc/src/sgml/ref/alter_type.sgml b/doc/src/sgml/ref/alter_type.sgml
index 6700023b34c..7724c11c78e 100644
--- a/doc/src/sgml/ref/alter_type.sgml
+++ b/doc/src/sgml/ref/alter_type.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER TYPE
+
+
ALTER TYPE
7
@@ -17,10 +21,6 @@ PostgreSQL documentation
-
- ALTER TYPE
-
-
ALTER TYPE name action [, ... ]
diff --git a/doc/src/sgml/ref/alter_user.sgml b/doc/src/sgml/ref/alter_user.sgml
index 7588f636ed2..58ae1da127f 100644
--- a/doc/src/sgml/ref/alter_user.sgml
+++ b/doc/src/sgml/ref/alter_user.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER USER
+
+
ALTER USER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change a database role
-
- ALTER USER
-
-
ALTER USER name [ [ WITH ] option [ ... ] ]
diff --git a/doc/src/sgml/ref/alter_user_mapping.sgml b/doc/src/sgml/ref/alter_user_mapping.sgml
index 3245f83e08d..d0ddd1370b9 100644
--- a/doc/src/sgml/ref/alter_user_mapping.sgml
+++ b/doc/src/sgml/ref/alter_user_mapping.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER USER MAPPING
+
+
ALTER USER MAPPING
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a user mapping
-
- ALTER USER MAPPING
-
-
ALTER USER MAPPING FOR { user_name | USER | CURRENT_USER | PUBLIC }
diff --git a/doc/src/sgml/ref/alter_view.sgml b/doc/src/sgml/ref/alter_view.sgml
index cbec3ab54eb..cdcc4f126ba 100644
--- a/doc/src/sgml/ref/alter_view.sgml
+++ b/doc/src/sgml/ref/alter_view.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ALTER VIEW
+
+
ALTER VIEW
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
change the definition of a view
-
- ALTER VIEW
-
-
ALTER VIEW [ IF EXISTS ] name ALTER [ COLUMN ] column_name SET DEFAULT expression
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 8063e3752e2..08d316a9e43 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ ANALYZE
+
+
ANALYZE
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
collect statistics about a database
-
- ANALYZE
-
-
ANALYZE [ VERBOSE ] [ table_name [ ( column_name [, ...] ) ] ]
diff --git a/doc/src/sgml/ref/begin.sgml b/doc/src/sgml/ref/begin.sgml
index acd823206a4..c04f1c8064c 100644
--- a/doc/src/sgml/ref/begin.sgml
+++ b/doc/src/sgml/ref/begin.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ BEGIN
+
+
BEGIN
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
start a transaction block
-
- BEGIN
-
-
BEGIN [ WORK | TRANSACTION ] [ transaction_mode [, ...] ]
diff --git a/doc/src/sgml/ref/checkpoint.sgml b/doc/src/sgml/ref/checkpoint.sgml
index e70b8c8cb4a..fa4dcc4f27d 100644
--- a/doc/src/sgml/ref/checkpoint.sgml
+++ b/doc/src/sgml/ref/checkpoint.sgml
@@ -1,6 +1,10 @@
+
+ CHECKPOINT
+
+
CHECKPOINT
7
@@ -12,10 +16,6 @@
force a transaction log checkpoint
-
- CHECKPOINT
-
-
CHECKPOINT
diff --git a/doc/src/sgml/ref/close.sgml b/doc/src/sgml/ref/close.sgml
index 4af6af74922..aacc667144b 100644
--- a/doc/src/sgml/ref/close.sgml
+++ b/doc/src/sgml/ref/close.sgml
@@ -4,6 +4,15 @@ PostgreSQL documentation
-->
+
+ CLOSE
+
+
+
+ cursor
+ CLOSE
+
+
CLOSE
7
@@ -15,15 +24,6 @@ PostgreSQL documentation
close a cursor
-
- CLOSE
-
-
-
- cursor
- CLOSE
-
-
CLOSE { name | ALL }
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 339990fa4d6..2ab090d03e5 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ CLUSTER
+
+
CLUSTER
7
@@ -15,10 +19,6 @@ PostgreSQL documentation
cluster a table according to an index
-
- CLUSTER
-
-
CLUSTER [VERBOSE] table_name [ USING index_name ]
diff --git a/doc/src/sgml/ref/clusterdb.sgml b/doc/src/sgml/ref/clusterdb.sgml
index 13169324500..c13d74853eb 100644
--- a/doc/src/sgml/ref/clusterdb.sgml
+++ b/doc/src/sgml/ref/clusterdb.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->
+
+ clusterdb
+
+
clusterdb
1
@@ -15,10 +19,6 @@ PostgreSQL documentation
cluster a PostgreSQL database
-
- clusterdb
-
-
clusterdb
diff --git a/doc/src/sgml/ref/comment.sgml b/doc/src/sgml/ref/comment.sgml
index 1b2949f64f1..53eadcdcc76 100644
--- a/doc/src/sgml/ref/comment.sgml
+++ b/doc/src/sgml/ref/comment.sgml
@@ -4,6 +4,10 @@ PostgreSQL documentation
-->