You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(28) |
Jun
(12) |
Jul
(11) |
Aug
(12) |
Sep
(5) |
Oct
(19) |
Nov
(14) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(18) |
Feb
(30) |
Mar
(115) |
Apr
(89) |
May
(50) |
Jun
(44) |
Jul
(22) |
Aug
(13) |
Sep
(11) |
Oct
(30) |
Nov
(28) |
Dec
(39) |
2012 |
Jan
(38) |
Feb
(18) |
Mar
(43) |
Apr
(91) |
May
(108) |
Jun
(46) |
Jul
(37) |
Aug
(44) |
Sep
(33) |
Oct
(29) |
Nov
(36) |
Dec
(15) |
2013 |
Jan
(35) |
Feb
(611) |
Mar
(5) |
Apr
(55) |
May
(30) |
Jun
(28) |
Jul
(458) |
Aug
(34) |
Sep
(9) |
Oct
(39) |
Nov
(22) |
Dec
(32) |
2014 |
Jan
(16) |
Feb
(16) |
Mar
(42) |
Apr
(179) |
May
(7) |
Jun
(6) |
Jul
(9) |
Aug
|
Sep
(4) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(2) |
2
(1) |
3
|
4
|
5
(3) |
6
|
7
|
8
(1) |
9
|
10
(1) |
11
(1) |
12
|
13
|
14
|
15
|
16
|
17
(1) |
18
|
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
(1) |
31
(1) |
|
|
|
From: Michael P. <mic...@us...> - 2011-08-31 01:13:51
|
Project "Postgres-XC". The branch, master has been updated via d661b22a3141d8b92704cc08ee8ba5547d325f4f (commit) from 341c1b2c06a08320430944bb1f8f36f2f8af6d30 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d661b22a3141d8b92704cc08ee8ba5547d325f4f commit d661b22a3141d8b92704cc08ee8ba5547d325f4f Author: Michael P <mic...@us...> Date: Wed Aug 31 10:15:37 2011 +0900 Change README according to Postgres-XC M README M README.git ----------------------------------------------------------------------- Summary of changes: README | 25 +++++++++++++------------ README.git | 2 +- 2 files changed, 14 insertions(+), 13 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2011-08-30 08:24:24
|
Project "Postgres-XC". The branch, master has been updated via 341c1b2c06a08320430944bb1f8f36f2f8af6d30 (commit) from f83286588cca9702ed24cc20513f420d99c480e4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=341c1b2c06a08320430944bb1f8f36f2f8af6d30 commit 341c1b2c06a08320430944bb1f8f36f2f8af6d30 Author: Ashutosh Bapat <ash...@en...> Date: Tue Aug 30 13:45:43 2011 +0530 Documentation changes for PREPARE, DEALLOCATE and EXECUTE commands. Since there is no user-visible Postgres-XC specific change in these commands, this commit restores the PostgreSQL documentation for these commands with some general XC specific notes. M doc-xc/src/sgml/ecpg.sgmlin M doc-xc/src/sgml/ref/deallocate.sgmlin M doc-xc/src/sgml/ref/execute.sgmlin M doc-xc/src/sgml/ref/prepare.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ecpg.sgmlin | 8 -------- doc-xc/src/sgml/ref/deallocate.sgmlin | 12 +----------- doc-xc/src/sgml/ref/execute.sgmlin | 12 +----------- doc-xc/src/sgml/ref/prepare.sgmlin | 13 +------------ 4 files changed, 3 insertions(+), 42 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2011-08-19 06:48:42
|
Project "Postgres-XC". The branch, master has been updated via f83286588cca9702ed24cc20513f420d99c480e4 (commit) from d3cd58c5f3ac1aee62ecc250efa0425370199adf (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f83286588cca9702ed24cc20513f420d99c480e4 commit f83286588cca9702ed24cc20513f420d99c480e4 Author: Ashutosh Bapat <ash...@en...> Date: Fri Aug 19 12:09:04 2011 +0530 Support for parameterised queries in XC. It has following changes. 1. The parameter values are stored in RemoteQueryState rather than RemoteQuery node, since they are execution time entities. 2. When the plan is generated for a parameterised query, the parameter types are set in all the RemoteQuery nodes in the plan. 3. At the time of execution, the parameter type names are sent to the datanodes, in the Parse message. Changes are done to send and receive parameter type names instead of OIDs. 4. The GROUP BY optimizations are now applied even in the case when there are bound parameters in the query. M src/backend/commands/prepare.c M src/backend/executor/functions.c M src/backend/nodes/copyfuncs.c M src/backend/optimizer/plan/createplan.c M src/backend/optimizer/plan/planner.c M src/backend/parser/analyze.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/tcop/postgres.c M src/include/commands/prepare.h M src/include/pgxc/execRemote.h M src/include/pgxc/planner.h ----------------------------------------------------------------------- Summary of changes: src/backend/commands/prepare.c | 68 +++++++++++++++++------------- src/backend/executor/functions.c | 19 +++++++++ src/backend/nodes/copyfuncs.c | 2 - src/backend/optimizer/plan/createplan.c | 6 --- src/backend/optimizer/plan/planner.c | 14 ++++++ src/backend/parser/analyze.c | 2 - src/backend/pgxc/plan/planner.c | 10 ----- src/backend/pgxc/pool/execRemote.c | 42 ++++++++++--------- src/backend/pgxc/pool/pgxcnode.c | 38 +++++++++++++---- src/backend/tcop/postgres.c | 45 ++++++++++++++++++-- src/include/commands/prepare.h | 2 + src/include/pgxc/execRemote.h | 4 ++ src/include/pgxc/planner.h | 5 -- 13 files changed, 169 insertions(+), 88 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-17 00:11:04
|
Project "Postgres-XC". The branch, master has been updated via d3cd58c5f3ac1aee62ecc250efa0425370199adf (commit) from 5c027100e51316b08282d0340c74e3e1ff29f610 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d3cd58c5f3ac1aee62ecc250efa0425370199adf commit d3cd58c5f3ac1aee62ecc250efa0425370199adf Author: Michael P <mic...@us...> Date: Wed Aug 17 09:02:10 2011 +0900 Addition of pgxc_prepared_xacts This new system view is based on a plpgsql function that uses EXECUTE DIRECT to scan GIDs of prepared transactions on each node and gather results back to the client. pgxc_prepared_xacts returns a distinct list of GIDs. pg_prepared_xacts is kept the same as the original one in PostgreSQL. As a consequence, schema scanning is not used anymore when looking for prepared transaction list. Now users should use pgxc_prepared_xacts to recover the list related to the whole cluster. pg_prepared_xacts can only be used on a local node. M src/backend/catalog/namespace.c M src/backend/catalog/system_views.sql M src/backend/nodes/copyfuncs.c M src/backend/parser/analyze.c M src/backend/parser/gram.y M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/postmaster/postmaster.c M src/backend/utils/cache/relcache.c M src/backend/utils/misc/guc.c M src/include/pgxc/locator.h M src/pl/plpgsql/src/plpgsql--1.0.sql M src/test/regress/expected/prepared_xacts_2.out M src/test/regress/sql/prepared_xacts.sql ----------------------------------------------------------------------- Summary of changes: src/backend/catalog/namespace.c | 3 - src/backend/catalog/system_views.sql | 12 +--- src/backend/nodes/copyfuncs.c | 20 ++++ src/backend/parser/analyze.c | 6 +- src/backend/parser/gram.y | 1 - src/backend/pgxc/plan/planner.c | 6 +- src/backend/pgxc/pool/execRemote.c | 22 ++++- src/backend/postmaster/postmaster.c | 20 ---- src/backend/utils/cache/relcache.c | 2 +- src/backend/utils/misc/guc.c | 17 ---- src/include/pgxc/locator.h | 4 - src/pl/plpgsql/src/plpgsql--1.0.sql | 32 +++++++ src/test/regress/expected/prepared_xacts_2.out | 113 +++++++++++++++-------- src/test/regress/sql/prepared_xacts.sql | 43 ++++++---- 14 files changed, 177 insertions(+), 124 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-11 02:06:54
|
Project "Postgres-XC". The branch, master has been updated via 5c027100e51316b08282d0340c74e3e1ff29f610 (commit) from a028e83cdcc45eb22aed4aef2e38ec2086eea68b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5c027100e51316b08282d0340c74e3e1ff29f610 commit 5c027100e51316b08282d0340c74e3e1ff29f610 Author: Michael P <mic...@us...> Date: Thu Aug 11 11:02:23 2011 +0900 Fix for bug 3389327: query deparse issue Origin of this bug was XC planner trying to identify the keyword "FROM" in a query during reconstruction of an ORDER BY query. The trick here is to replace "FROM" in the aliases generated by query deparsing by "_FROM_" to avoid having query reconstruction look for aliases instead of real FROM clauses. The new algorithm in place in XC planner is able to rebuild query aliases to more consistent names even in multiple places. This fixes the regression test date. M src/backend/pgxc/plan/planner.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 84 ++++++++++++++++++++++++++++++++++++--- 1 files changed, 78 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-10 02:04:20
|
Project "Postgres-XC". The branch, master has been updated via a028e83cdcc45eb22aed4aef2e38ec2086eea68b (commit) from 52fde6ac488b392203d642bc1b54d124ec4843ed (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a028e83cdcc45eb22aed4aef2e38ec2086eea68b commit a028e83cdcc45eb22aed4aef2e38ec2086eea68b Author: Michael P <mic...@us...> Date: Wed Aug 10 11:02:02 2011 +0900 Correction for regression test enum Hash keys based on emumeration types are not supported for the moment. A src/test/regress/expected/enum_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/{enum.out => enum_1.out} | 26 ++++++++++++++----- 1 files changed, 19 insertions(+), 7 deletions(-) copy src/test/regress/expected/{enum.out => enum_1.out} (92%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-08 06:57:32
|
Project "Postgres-XC". The branch, master has been updated via 52fde6ac488b392203d642bc1b54d124ec4843ed (commit) from f1a32c6227136d722aead50b8d4a85fceba7523f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=52fde6ac488b392203d642bc1b54d124ec4843ed commit 52fde6ac488b392203d642bc1b54d124ec4843ed Author: Michael P <mic...@us...> Date: Mon Aug 8 15:54:49 2011 +0900 Clean up compilation warnings 90% of compilation warnings are cleaned with this commit. There are still warnings remaining due to the strong dependance between GTM and PGXC main code. M src/backend/access/common/heaptuple.c M src/backend/access/hash/hashfunc.c M src/backend/access/transam/gtm.c M src/backend/commands/copy.c M src/backend/commands/dbcommands.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/readfuncs.c M src/backend/optimizer/plan/planner.c M src/backend/optimizer/util/pathnode.c M src/backend/parser/analyze.c M src/backend/parser/gram.y M src/backend/pgxc/barrier/barrier.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/pgxc/pool/poolmgr.c M src/backend/rewrite/rewriteHandler.c M src/backend/tcop/postgres.c M src/backend/utils/adt/ruleutils.c M src/backend/utils/error/elog.c M src/backend/utils/mmgr/mcxt.c M src/backend/utils/sort/tuplesort.c M src/gtm/common/mcxt.c M src/gtm/gtm_ctl/gtm_ctl.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/path/path.c M src/gtm/proxy/proxy_main.c M src/include/access/gtm.h M src/include/pgxc/barrier.h M src/include/pgxc/pgxcnode.h M src/include/pgxc/planner.h ----------------------------------------------------------------------- Summary of changes: src/backend/access/common/heaptuple.c | 4 +- src/backend/access/hash/hashfunc.c | 2 +- src/backend/access/transam/gtm.c | 2 +- src/backend/commands/copy.c | 188 +------------------------------- src/backend/commands/dbcommands.c | 4 +- src/backend/nodes/copyfuncs.c | 3 +- src/backend/nodes/readfuncs.c | 16 --- src/backend/optimizer/plan/planner.c | 2 + src/backend/optimizer/util/pathnode.c | 2 +- src/backend/parser/analyze.c | 3 +- src/backend/parser/gram.y | 4 +- src/backend/pgxc/barrier/barrier.c | 4 - src/backend/pgxc/plan/planner.c | 32 +----- src/backend/pgxc/pool/execRemote.c | 3 - src/backend/pgxc/pool/pgxcnode.c | 2 +- src/backend/pgxc/pool/poolmgr.c | 18 ++-- src/backend/rewrite/rewriteHandler.c | 5 +- src/backend/tcop/postgres.c | 2 +- src/backend/utils/adt/ruleutils.c | 4 +- src/backend/utils/error/elog.c | 1 + src/backend/utils/mmgr/mcxt.c | 6 +- src/backend/utils/sort/tuplesort.c | 2 +- src/gtm/common/mcxt.c | 8 ++- src/gtm/gtm_ctl/gtm_ctl.c | 2 - src/gtm/main/gtm_seq.c | 6 +- src/gtm/main/gtm_txn.c | 1 + src/gtm/path/path.c | 12 +- src/gtm/proxy/proxy_main.c | 1 - src/include/access/gtm.h | 2 +- src/include/pgxc/barrier.h | 4 + src/include/pgxc/pgxcnode.h | 5 + src/include/pgxc/planner.h | 2 +- 32 files changed, 78 insertions(+), 274 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-08-05 07:35:19
|
Project "Postgres-XC". The branch, master has been updated via f1a32c6227136d722aead50b8d4a85fceba7523f (commit) via 694cab5487b60da9b07cf0418bac6b1e41875ea9 (commit) from 8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f1a32c6227136d722aead50b8d4a85fceba7523f commit f1a32c6227136d722aead50b8d4a85fceba7523f Merge: 694cab5 8a15033 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 5 16:38:03 2011 +0900 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=694cab5487b60da9b07cf0418bac6b1e41875ea9 commit f1a32c6227136d722aead50b8d4a85fceba7523f Merge: 694cab5 8a15033 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 5 16:38:03 2011 +0900 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_table.sgmlin | 2 +- doc-xc/src/sgml/ref/create_view.sgmlin | 2 +- doc-xc/src/sgml/ref/select.sgmlin | 2 +- doc-xc/src/sgml/sql.sgmlin | 41 +++++++++++++++++++----------- 4 files changed, 29 insertions(+), 18 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-05 07:24:53
|
Project "Postgres-XC". The branch, documentation has been deleted was 4b5e7dbd9ecd43597fb63c14a3f0c830d266ace2 ----------------------------------------------------------------------- 4b5e7dbd9ecd43597fb63c14a3f0c830d266ace2 This commit updates Postgres-XC documentation on manual build and installation. ----------------------------------------------------------------------- hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-05 02:26:13
|
Project "Postgres-XC". The branch, master has been updated via 8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 (commit) from 87502bc809b852337e09f391317cbbc0cc35faf8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 commit 8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 Author: Michael P <mic...@us...> Date: Fri Aug 5 11:07:38 2011 +0900 Support for temporary TABLE/VIEW Temporary tables and views are supported so as it uses the same interface as PostgreSQL. For Postgres-XC, it is possible for users to create un the cluster temporary tables that are replicated or distributed the same way as permanent tables. As those objects are session-limited, creation is made automatically on the Datanodes at the moment of query launch like normal DDL. Views are created only on local Coordinators. Support for ON COMMIT DROP/PRESERVE ROWS/DELETE ROWS is guarranted the same way as PostgreSQL. Support for INDEX, DROP, RENAME is also guarranted like normal PostgreSQL. One of the main changes is the addition of a DISCARD ALL clean up command run in pooler for pooler connections used during session to Datanodes when session finishes. This command is run the same way as RESET ALL for SET commands at the end of a session. A new regression test case called xc_temp has been added to check JOINs between temporary and persistent tables for the types types of distribution supported by Postgres-XC: REPLICATION, HASH (equivalent to MODULO), ROUND ROBIN. M src/backend/access/transam/xact.c M src/backend/commands/comment.c M src/backend/commands/copy.c M src/backend/commands/schemacmds.c M src/backend/commands/tablecmds.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/poolmgr.c M src/backend/tcop/utility.c M src/include/commands/comment.h M src/include/commands/tablecmds.h M src/include/pgxc/execRemote.h M src/include/pgxc/planner.h M src/include/pgxc/poolmgr.h M src/test/regress/expected/cluster_1.out M src/test/regress/expected/combocid_1.out M src/test/regress/expected/copy2_1.out M src/test/regress/expected/domain_1.out M src/test/regress/expected/foreign_key_1.out M src/test/regress/expected/functional_deps_1.out M src/test/regress/expected/guc_1.out M src/test/regress/expected/polymorphism_1.out M src/test/regress/expected/returning_1.out M src/test/regress/expected/rowtypes_1.out M src/test/regress/expected/select_1.out M src/test/regress/expected/select_distinct_on_1.out M src/test/regress/expected/sequence_2.out M src/test/regress/expected/temp_1.out M src/test/regress/expected/transactions_1.out A src/test/regress/expected/xc_temp.out M src/test/regress/serial_schedule M src/test/regress/sql/cluster.sql M src/test/regress/sql/rowtypes.sql A src/test/regress/sql/xc_temp.sql ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/xact.c | 17 + src/backend/commands/comment.c | 42 +- src/backend/commands/copy.c | 6 + src/backend/commands/schemacmds.c | 3 +- src/backend/commands/tablecmds.c | 117 +++- src/backend/optimizer/plan/createplan.c | 10 +- src/backend/pgxc/plan/planner.c | 46 +- src/backend/pgxc/pool/execRemote.c | 63 ++- src/backend/pgxc/pool/poolmgr.c | 186 +++- src/backend/tcop/utility.c | 557 ++++++++---- src/include/commands/comment.h | 4 + src/include/commands/tablecmds.h | 8 + src/include/pgxc/execRemote.h | 2 + src/include/pgxc/planner.h | 5 +- src/include/pgxc/poolmgr.h | 25 +- src/test/regress/expected/cluster_1.out | 18 +- src/test/regress/expected/combocid_1.out | 76 +- src/test/regress/expected/copy2_1.out | 83 +- src/test/regress/expected/domain_1.out | 49 +- src/test/regress/expected/foreign_key_1.out | 28 +- src/test/regress/expected/functional_deps_1.out | 30 +- src/test/regress/expected/guc_1.out | 12 +- src/test/regress/expected/polymorphism_1.out | 263 ++++-- src/test/regress/expected/returning_1.out | 12 +- src/test/regress/expected/rowtypes_1.out | 181 ++-- src/test/regress/expected/select_1.out | 247 ++++-- src/test/regress/expected/select_distinct_on_1.out | 3 +- src/test/regress/expected/sequence_2.out | 6 +- src/test/regress/expected/temp_1.out | 106 +-- src/test/regress/expected/transactions_1.out | 15 +- src/test/regress/expected/xc_temp.out | 952 ++++++++++++++++++++ src/test/regress/serial_schedule | 2 +- src/test/regress/sql/cluster.sql | 2 +- src/test/regress/sql/rowtypes.sql | 3 +- src/test/regress/sql/xc_temp.sql | 138 +++ 35 files changed, 2549 insertions(+), 768 deletions(-) create mode 100644 src/test/regress/expected/xc_temp.out create mode 100644 src/test/regress/sql/xc_temp.sql hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-08-02 07:56:36
|
Project "Postgres-XC". The branch, master has been updated via 87502bc809b852337e09f391317cbbc0cc35faf8 (commit) from 3c79518f4e24a7e1265993b01217812c0a61bea4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commit;h= commit 87502bc809b852337e09f391317cbbc0cc35faf8 Author: Koichi Suzuki <koi...@gm...> Date: Tue Aug 2 16:49:24 2011 +0900 This commit adds Postgres-XC reference manual. Modified file: GNUmakefile.in - Changed documentation directory to doc-xc. Added directory: doc-xc/ - Postgres-XC reference manual source. Please note that the original PostgreSQL document source is kept in "doc" directory. For details of the configuraiton and document build, please visit https://sourceforge.net/apps/mediawiki/postgres-xc/index.php?title=Reference_Manual In short, original sgml file is renamed with suffix sgmlin, where all the contents of original PostgreSQL documentation is kept as is, together with Postgres-XC specific contents. PostgreSQL-specific contents are marked with <!## PG> ... <!## end> Postgres-XC-specific contents are marked with <!## XC> ... <!## end> They are transformed by the tool named "makesgml" into conventional sgml files. Makesgml tool will be found in doc-xc/tools directory. M GNUmakefile.in A doc-xc/KNOWN_BUGS A doc-xc/MISSING_FEATURES A doc-xc/Makefile A doc-xc/README.mb.big5 A doc-xc/README.mb.jp A doc-xc/TODO A doc-xc/bug.template A doc-xc/src/Makefile A doc-xc/src/sgml/.gitignore A doc-xc/src/sgml/Makefile A doc-xc/src/sgml/Makefile.xc.wk A doc-xc/src/sgml/README.links A doc-xc/src/sgml/acronyms.sgmlin A doc-xc/src/sgml/adminpack.sgmlin A doc-xc/src/sgml/advanced.sgmlin A doc-xc/src/sgml/arch-dev.sgmlin A doc-xc/src/sgml/array.sgmlin A doc-xc/src/sgml/auth-delay.sgmlin A doc-xc/src/sgml/auto-explain.sgmlin A doc-xc/src/sgml/backup.sgmlin A doc-xc/src/sgml/biblio.sgmlin A doc-xc/src/sgml/bki.sgmlin A doc-xc/src/sgml/bookindex.sgmlin A doc-xc/src/sgml/btree-gin.sgmlin A doc-xc/src/sgml/btree-gist.sgmlin A doc-xc/src/sgml/catalogs.sgmlin A doc-xc/src/sgml/charset.sgmlin A doc-xc/src/sgml/chkpass.sgmlin A doc-xc/src/sgml/citext.sgmlin A doc-xc/src/sgml/client-auth.sgmlin A doc-xc/src/sgml/common.sgmlin A doc-xc/src/sgml/config.sgmlin A doc-xc/src/sgml/contacts.sgmlin A doc-xc/src/sgml/contrib-spi.sgmlin A doc-xc/src/sgml/contrib.sgmlin A doc-xc/src/sgml/cube.sgmlin A doc-xc/src/sgml/datatype.sgmlin A doc-xc/src/sgml/datetime.sgmlin A doc-xc/src/sgml/dblink.sgmlin A doc-xc/src/sgml/ddl.sgmlin A doc-xc/src/sgml/dfunc.sgmlin A doc-xc/src/sgml/dict-int.sgmlin A doc-xc/src/sgml/dict-xsyn.sgmlin A doc-xc/src/sgml/diskusage.sgmlin A doc-xc/src/sgml/dml.sgmlin A doc-xc/src/sgml/docguide.sgmlin A doc-xc/src/sgml/dummy-seclabel.sgmlin A doc-xc/src/sgml/earthdistance.sgmlin A doc-xc/src/sgml/ecpg.sgmlin A doc-xc/src/sgml/errcodes.sgmlin A doc-xc/src/sgml/extend.sgmlin A doc-xc/src/sgml/external-projects.sgmlin A doc-xc/src/sgml/fdwhandler.sgmlin A doc-xc/src/sgml/features-supported.sgmlin A doc-xc/src/sgml/features-unsupported.sgmlin A doc-xc/src/sgml/features.sgmlin A doc-xc/src/sgml/file-fdw.sgmlin A doc-xc/src/sgml/filelist.sgmlin A doc-xc/src/sgml/fixrtf A doc-xc/src/sgml/func.sgmlin A doc-xc/src/sgml/fuzzystrmatch.sgmlin A doc-xc/src/sgml/generate-errcodes-table.pl A doc-xc/src/sgml/generate_history.pl A doc-xc/src/sgml/geqo.sgmlin A doc-xc/src/sgml/gin.sgmlin A doc-xc/src/sgml/gist.sgmlin A doc-xc/src/sgml/high-availability.sgmlin A doc-xc/src/sgml/history.sgmlin A doc-xc/src/sgml/hstore.sgmlin A doc-xc/src/sgml/indexam.sgmlin A doc-xc/src/sgml/indices.sgmlin A doc-xc/src/sgml/info.sgmlin A doc-xc/src/sgml/information_schema.sgmlin A doc-xc/src/sgml/install-windows.sgmlin A doc-xc/src/sgml/installation.sgmlin A doc-xc/src/sgml/intagg.sgmlin A doc-xc/src/sgml/intarray.sgmlin A doc-xc/src/sgml/intro.sgmlin A doc-xc/src/sgml/isn.sgmlin A doc-xc/src/sgml/jadetex.cfg A doc-xc/src/sgml/keywords.sgmlin A doc-xc/src/sgml/legal.sgmlin A doc-xc/src/sgml/libpq.sgmlin A doc-xc/src/sgml/lo.sgmlin A doc-xc/src/sgml/lobj.sgmlin A doc-xc/src/sgml/ltree.sgmlin A doc-xc/src/sgml/maintenance.sgmlin A doc-xc/src/sgml/manage-ag.sgmlin A doc-xc/src/sgml/mk_feature_tables.pl A doc-xc/src/sgml/monitoring.sgmlin A doc-xc/src/sgml/mvcc.sgmlin A doc-xc/src/sgml/nls.sgmlin A doc-xc/src/sgml/notation.sgmlin A doc-xc/src/sgml/oid2name.sgmlin A doc-xc/src/sgml/pageinspect.sgmlin A doc-xc/src/sgml/passwordcheck.sgmlin A doc-xc/src/sgml/perform.sgmlin A doc-xc/src/sgml/pgarchivecleanup.sgmlin A doc-xc/src/sgml/pgbench.sgmlin A doc-xc/src/sgml/pgbuffercache.sgmlin A doc-xc/src/sgml/pgcrypto.sgmlin A doc-xc/src/sgml/pgfreespacemap.sgmlin A doc-xc/src/sgml/pgnotice.sgmlin A doc-xc/src/sgml/pgonly.sgmlin A doc-xc/src/sgml/pgrowlocks.sgmlin A doc-xc/src/sgml/pgstandby.sgmlin A doc-xc/src/sgml/pgstatstatements.sgmlin A doc-xc/src/sgml/pgstattuple.sgmlin A doc-xc/src/sgml/pgtestfsync.sgmlin A doc-xc/src/sgml/pgtrgm.sgmlin A doc-xc/src/sgml/pgupgrade.sgmlin A doc-xc/src/sgml/planstats.sgmlin A doc-xc/src/sgml/plhandler.sgmlin A doc-xc/src/sgml/plperl.sgmlin A doc-xc/src/sgml/plpgsql.sgmlin A doc-xc/src/sgml/plpython.sgmlin A doc-xc/src/sgml/pltcl.sgmlin A doc-xc/src/sgml/postgres.sgmlin A doc-xc/src/sgml/problems.sgmlin A doc-xc/src/sgml/protocol.sgmlin A doc-xc/src/sgml/queries.sgmlin A doc-xc/src/sgml/query.sgmlin A doc-xc/src/sgml/recovery-config.sgmlin A doc-xc/src/sgml/ref/abort.sgmlin A doc-xc/src/sgml/ref/allfiles.sgmlin A doc-xc/src/sgml/ref/alter_aggregate.sgmlin A doc-xc/src/sgml/ref/alter_collation.sgmlin A doc-xc/src/sgml/ref/alter_conversion.sgmlin A doc-xc/src/sgml/ref/alter_database.sgmlin A doc-xc/src/sgml/ref/alter_default_privileges.sgmlin A doc-xc/src/sgml/ref/alter_domain.sgmlin A doc-xc/src/sgml/ref/alter_extension.sgmlin A doc-xc/src/sgml/ref/alter_foreign_data_wrapper.sgmlin A doc-xc/src/sgml/ref/alter_foreign_table.sgmlin A doc-xc/src/sgml/ref/alter_function.sgmlin A doc-xc/src/sgml/ref/alter_group.sgmlin A doc-xc/src/sgml/ref/alter_index.sgmlin A doc-xc/src/sgml/ref/alter_language.sgmlin A doc-xc/src/sgml/ref/alter_large_object.sgmlin A doc-xc/src/sgml/ref/alter_opclass.sgmlin A doc-xc/src/sgml/ref/alter_operator.sgmlin A doc-xc/src/sgml/ref/alter_opfamily.sgmlin A doc-xc/src/sgml/ref/alter_role.sgmlin A doc-xc/src/sgml/ref/alter_schema.sgmlin A doc-xc/src/sgml/ref/alter_sequence.sgmlin A doc-xc/src/sgml/ref/alter_server.sgmlin A doc-xc/src/sgml/ref/alter_table.sgmlin A doc-xc/src/sgml/ref/alter_tablespace.sgmlin A doc-xc/src/sgml/ref/alter_trigger.sgmlin A doc-xc/src/sgml/ref/alter_tsconfig.sgmlin A doc-xc/src/sgml/ref/alter_tsdictionary.sgmlin A doc-xc/src/sgml/ref/alter_tsparser.sgmlin A doc-xc/src/sgml/ref/alter_tstemplate.sgmlin A doc-xc/src/sgml/ref/alter_type.sgmlin A doc-xc/src/sgml/ref/alter_user.sgmlin A doc-xc/src/sgml/ref/alter_user_mapping.sgmlin A doc-xc/src/sgml/ref/alter_view.sgmlin A doc-xc/src/sgml/ref/analyze.sgmlin A doc-xc/src/sgml/ref/begin.sgmlin A doc-xc/src/sgml/ref/checkpoint.sgmlin A doc-xc/src/sgml/ref/clean_connection.sgmlin A doc-xc/src/sgml/ref/close.sgmlin A doc-xc/src/sgml/ref/cluster.sgmlin A doc-xc/src/sgml/ref/clusterdb.sgmlin A doc-xc/src/sgml/ref/comment.sgmlin A doc-xc/src/sgml/ref/commit.sgmlin A doc-xc/src/sgml/ref/commit_prepared.sgmlin A doc-xc/src/sgml/ref/copy.sgmlin A doc-xc/src/sgml/ref/create_aggregate.sgmlin A doc-xc/src/sgml/ref/create_barrier.sgmlin A doc-xc/src/sgml/ref/create_cast.sgmlin A doc-xc/src/sgml/ref/create_collation.sgmlin A doc-xc/src/sgml/ref/create_conversion.sgmlin A doc-xc/src/sgml/ref/create_database.sgmlin A doc-xc/src/sgml/ref/create_domain.sgmlin A doc-xc/src/sgml/ref/create_extension.sgmlin A doc-xc/src/sgml/ref/create_foreign_data_wrapper.sgmlin A doc-xc/src/sgml/ref/create_foreign_table.sgmlin A doc-xc/src/sgml/ref/create_function.sgmlin A doc-xc/src/sgml/ref/create_group.sgmlin A doc-xc/src/sgml/ref/create_index.sgmlin A doc-xc/src/sgml/ref/create_language.sgmlin A doc-xc/src/sgml/ref/create_opclass.sgmlin A doc-xc/src/sgml/ref/create_operator.sgmlin A doc-xc/src/sgml/ref/create_opfamily.sgmlin A doc-xc/src/sgml/ref/create_role.sgmlin A doc-xc/src/sgml/ref/create_rule.sgmlin A doc-xc/src/sgml/ref/create_schema.sgmlin A doc-xc/src/sgml/ref/create_sequence.sgmlin A doc-xc/src/sgml/ref/create_server.sgmlin A doc-xc/src/sgml/ref/create_table.sgmlin A doc-xc/src/sgml/ref/create_table_as.sgmlin A doc-xc/src/sgml/ref/create_tablespace.sgmlin A doc-xc/src/sgml/ref/create_trigger.sgmlin A doc-xc/src/sgml/ref/create_tsconfig.sgmlin A doc-xc/src/sgml/ref/create_tsdictionary.sgmlin A doc-xc/src/sgml/ref/create_tsparser.sgmlin A doc-xc/src/sgml/ref/create_tstemplate.sgmlin A doc-xc/src/sgml/ref/create_type.sgmlin A doc-xc/src/sgml/ref/create_user.sgmlin A doc-xc/src/sgml/ref/create_user_mapping.sgmlin A doc-xc/src/sgml/ref/create_view.sgmlin A doc-xc/src/sgml/ref/createdb.sgmlin A doc-xc/src/sgml/ref/createlang.sgmlin A doc-xc/src/sgml/ref/createuser.sgmlin A doc-xc/src/sgml/ref/deallocate.sgmlin A doc-xc/src/sgml/ref/declare.sgmlin A doc-xc/src/sgml/ref/delete.sgmlin A doc-xc/src/sgml/ref/discard.sgmlin A doc-xc/src/sgml/ref/do.sgmlin A doc-xc/src/sgml/ref/drop_aggregate.sgmlin A doc-xc/src/sgml/ref/drop_cast.sgmlin A doc-xc/src/sgml/ref/drop_collation.sgmlin A doc-xc/src/sgml/ref/drop_conversion.sgmlin A doc-xc/src/sgml/ref/drop_database.sgmlin A doc-xc/src/sgml/ref/drop_domain.sgmlin A doc-xc/src/sgml/ref/drop_extension.sgmlin A doc-xc/src/sgml/ref/drop_foreign_data_wrapper.sgmlin A doc-xc/src/sgml/ref/drop_foreign_table.sgmlin A doc-xc/src/sgml/ref/drop_function.sgmlin A doc-xc/src/sgml/ref/drop_group.sgmlin A doc-xc/src/sgml/ref/drop_index.sgmlin A doc-xc/src/sgml/ref/drop_language.sgmlin A doc-xc/src/sgml/ref/drop_opclass.sgmlin A doc-xc/src/sgml/ref/drop_operator.sgmlin A doc-xc/src/sgml/ref/drop_opfamily.sgmlin A doc-xc/src/sgml/ref/drop_owned.sgmlin A doc-xc/src/sgml/ref/drop_role.sgmlin A doc-xc/src/sgml/ref/drop_rule.sgmlin A doc-xc/src/sgml/ref/drop_schema.sgmlin A doc-xc/src/sgml/ref/drop_sequence.sgmlin A doc-xc/src/sgml/ref/drop_server.sgmlin A doc-xc/src/sgml/ref/drop_table.sgmlin A doc-xc/src/sgml/ref/drop_tablespace.sgmlin A doc-xc/src/sgml/ref/drop_trigger.sgmlin A doc-xc/src/sgml/ref/drop_tsconfig.sgmlin A doc-xc/src/sgml/ref/drop_tsdictionary.sgmlin A doc-xc/src/sgml/ref/drop_tsparser.sgmlin A doc-xc/src/sgml/ref/drop_tstemplate.sgmlin A doc-xc/src/sgml/ref/drop_type.sgmlin A doc-xc/src/sgml/ref/drop_user.sgmlin A doc-xc/src/sgml/ref/drop_user_mapping.sgmlin A doc-xc/src/sgml/ref/drop_view.sgmlin A doc-xc/src/sgml/ref/dropdb.sgmlin A doc-xc/src/sgml/ref/droplang.sgmlin A doc-xc/src/sgml/ref/dropuser.sgmlin A doc-xc/src/sgml/ref/ecpg-ref.sgmlin A doc-xc/src/sgml/ref/end.sgmlin A doc-xc/src/sgml/ref/execute.sgmlin A doc-xc/src/sgml/ref/execute_direct.sgmlin A doc-xc/src/sgml/ref/explain.sgmlin A doc-xc/src/sgml/ref/fetch.sgmlin A doc-xc/src/sgml/ref/grant.sgmlin A doc-xc/src/sgml/ref/gtm.sgmlin A doc-xc/src/sgml/ref/gtm_ctl.sgmlin A doc-xc/src/sgml/ref/gtm_proxy.sgmlin A doc-xc/src/sgml/ref/initdb.sgmlin A doc-xc/src/sgml/ref/insert.sgmlin A doc-xc/src/sgml/ref/listen.sgmlin A doc-xc/src/sgml/ref/load.sgmlin A doc-xc/src/sgml/ref/lock.sgmlin A doc-xc/src/sgml/ref/move.sgmlin A doc-xc/src/sgml/ref/notify.sgmlin A doc-xc/src/sgml/ref/pg_basebackup.sgmlin A doc-xc/src/sgml/ref/pg_config-ref.sgmlin A doc-xc/src/sgml/ref/pg_controldata.sgmlin A doc-xc/src/sgml/ref/pg_ctl-ref.sgml.jp A doc-xc/src/sgml/ref/pg_ctl-ref.sgml.org A doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin A doc-xc/src/sgml/ref/pg_dump.sgmlin A doc-xc/src/sgml/ref/pg_dumpall.sgmlin A doc-xc/src/sgml/ref/pg_resetxlog.sgmlin A doc-xc/src/sgml/ref/pg_restore.sgmlin A doc-xc/src/sgml/ref/pgxc_ddl.sgmlin A doc-xc/src/sgml/ref/postgres-ref.sgmlin A doc-xc/src/sgml/ref/postmaster.sgmlin A doc-xc/src/sgml/ref/prepare.sgmlin A doc-xc/src/sgml/ref/prepare_transaction.sgmlin A doc-xc/src/sgml/ref/psql-ref.sgmlin A doc-xc/src/sgml/ref/reassign_owned.sgmlin A doc-xc/src/sgml/ref/reindex.sgmlin A doc-xc/src/sgml/ref/reindexdb.sgmlin A doc-xc/src/sgml/ref/release_savepoint.sgmlin A doc-xc/src/sgml/ref/reset.sgmlin A doc-xc/src/sgml/ref/revoke.sgmlin A doc-xc/src/sgml/ref/rollback.sgmlin A doc-xc/src/sgml/ref/rollback_prepared.sgmlin A doc-xc/src/sgml/ref/rollback_to.sgmlin A doc-xc/src/sgml/ref/savepoint.sgmlin A doc-xc/src/sgml/ref/security_label.sgmlin A doc-xc/src/sgml/ref/select.sgmlin A doc-xc/src/sgml/ref/select_into.sgmlin A doc-xc/src/sgml/ref/set.sgmlin A doc-xc/src/sgml/ref/set_constraints.sgmlin A doc-xc/src/sgml/ref/set_role.sgmlin A doc-xc/src/sgml/ref/set_session_auth.sgmlin A doc-xc/src/sgml/ref/set_transaction.sgmlin A doc-xc/src/sgml/ref/show.sgmlin A doc-xc/src/sgml/ref/start_transaction.sgmlin A doc-xc/src/sgml/ref/truncate.sgmlin A doc-xc/src/sgml/ref/unlisten.sgmlin A doc-xc/src/sgml/ref/update.sgmlin A doc-xc/src/sgml/ref/vacuum.sgmlin A doc-xc/src/sgml/ref/vacuumdb.sgmlin A doc-xc/src/sgml/ref/values.sgmlin A doc-xc/src/sgml/reference.sgmlin A doc-xc/src/sgml/regress.sgmlin A doc-xc/src/sgml/release-7.4.sgmlin A doc-xc/src/sgml/release-8.0.sgmlin A doc-xc/src/sgml/release-8.1.sgmlin A doc-xc/src/sgml/release-8.2.sgmlin A doc-xc/src/sgml/release-8.3.sgmlin A doc-xc/src/sgml/release-8.4.sgmlin A doc-xc/src/sgml/release-9.0.sgmlin A doc-xc/src/sgml/release-9.1.sgmlin A doc-xc/src/sgml/release-old.sgmlin A doc-xc/src/sgml/release.sgmlin A doc-xc/src/sgml/rowtypes.sgmlin A doc-xc/src/sgml/rules.sgmlin A doc-xc/src/sgml/runtime.sgmlin A doc-xc/src/sgml/seg.sgmlin A doc-xc/src/sgml/sepgsql.sgmlin A doc-xc/src/sgml/sourcerepo.sgmlin A doc-xc/src/sgml/sources.sgmlin A doc-xc/src/sgml/spi.sgmlin A doc-xc/src/sgml/sql.sgmlin A doc-xc/src/sgml/sslinfo.sgmlin A doc-xc/src/sgml/standalone-install.sgmlin A doc-xc/src/sgml/start.sgmlin A doc-xc/src/sgml/storage.sgmlin A doc-xc/src/sgml/stylesheet-common.xsl A doc-xc/src/sgml/stylesheet-fo.xsl A doc-xc/src/sgml/stylesheet-hh.xsl A doc-xc/src/sgml/stylesheet-man.xsl A doc-xc/src/sgml/stylesheet.css A doc-xc/src/sgml/stylesheet.dsl A doc-xc/src/sgml/stylesheet.xsl A doc-xc/src/sgml/syntax.sgmlin A doc-xc/src/sgml/tablefunc.sgmlin A doc-xc/src/sgml/test-parser.sgmlin A doc-xc/src/sgml/textsearch.sgmlin A doc-xc/src/sgml/trigger.sgmlin A doc-xc/src/sgml/tsearch2.sgmlin A doc-xc/src/sgml/typeconv.sgmlin A doc-xc/src/sgml/unaccent.sgmlin A doc-xc/src/sgml/user-manag.sgmlin A doc-xc/src/sgml/uuid-ossp.sgmlin A doc-xc/src/sgml/vacuumlo.sgmlin A doc-xc/src/sgml/version.sgmlin A doc-xc/src/sgml/wal.sgmlin A doc-xc/src/sgml/wk.patch A doc-xc/src/sgml/xaggr.sgmlin A doc-xc/src/sgml/xconly.sgmlin A doc-xc/src/sgml/xfunc.sgmlin A doc-xc/src/sgml/xindex.sgmlin A doc-xc/src/sgml/xml2.sgmlin A doc-xc/src/sgml/xoper.sgmlin A doc-xc/src/sgml/xplang.sgmlin A doc-xc/src/sgml/xtypes.sgmlin A doc-xc/tools/makesgml/README A doc-xc/tools/makesgml/makesgml.c A doc-xc/tools/makesgml/test.multilang A doc-xc/tools/makesgml/test.out A doc-xc/tools/makesgml/test.test ----------------------------------------------------------------------- Summary of changes: GNUmakefile.in | 8 +- {doc => doc-xc}/KNOWN_BUGS | 0 {doc => doc-xc}/MISSING_FEATURES | 0 {doc => doc-xc}/Makefile | 0 {doc => doc-xc}/README.mb.big5 | 0 {doc => doc-xc}/README.mb.jp | 0 {doc => doc-xc}/TODO | 0 {doc => doc-xc}/bug.template | 0 {doc => doc-xc}/src/Makefile | 0 {doc => doc-xc}/src/sgml/.gitignore | 0 doc-xc/src/sgml/Makefile | 411 + doc-xc/src/sgml/Makefile.xc.wk | 407 + {doc => doc-xc}/src/sgml/README.links | 0 doc-xc/src/sgml/acronyms.sgmlin | 796 + doc-xc/src/sgml/adminpack.sgmlin | 47 + doc-xc/src/sgml/advanced.sgmlin | 802 + doc-xc/src/sgml/arch-dev.sgmlin | 1097 ++ doc-xc/src/sgml/array.sgmlin | 734 + .../src/sgml/auth-delay.sgmlin | 0 doc-xc/src/sgml/auto-explain.sgmlin | 230 + doc-xc/src/sgml/backup.sgmlin | 1466 ++ doc-xc/src/sgml/biblio.sgmlin | 568 + doc-xc/src/sgml/bki.sgmlin | 368 + doc-xc/src/sgml/bookindex.sgmlin |10518 +++++++++++++ doc-xc/src/sgml/btree-gin.sgmlin | 59 + doc-xc/src/sgml/btree-gist.sgmlin | 125 + doc-xc/src/sgml/catalogs.sgmlin | 8651 +++++++++++ doc-xc/src/sgml/charset.sgmlin | 1658 +++ doc-xc/src/sgml/chkpass.sgmlin | 97 + doc-xc/src/sgml/citext.sgmlin | 292 + doc-xc/src/sgml/client-auth.sgmlin | 1857 +++ doc-xc/src/sgml/common.sgmlin | 7 + doc-xc/src/sgml/config.sgmlin | 7026 +++++++++ .../src/sgml/contacts.sgmlin | 0 doc-xc/src/sgml/contrib-spi.sgmlin | 237 + doc-xc/src/sgml/contrib.sgmlin | 140 + doc-xc/src/sgml/cube.sgmlin | 432 + doc-xc/src/sgml/datatype.sgmlin | 4892 +++++++ doc-xc/src/sgml/datetime.sgmlin | 614 + doc-xc/src/sgml/dblink.sgmlin | 2409 +++ doc-xc/src/sgml/ddl.sgmlin | 3507 +++++ doc-xc/src/sgml/dfunc.sgmlin | 356 + doc-xc/src/sgml/dict-int.sgmlin | 94 + doc-xc/src/sgml/dict-xsyn.sgmlin | 158 + doc-xc/src/sgml/diskusage.sgmlin | 147 + doc-xc/src/sgml/dml.sgmlin | 268 + doc-xc/src/sgml/docguide.sgmlin | 1405 ++ .../src/sgml/dummy-seclabel.sgmlin | 0 doc-xc/src/sgml/earthdistance.sgmlin | 201 + doc-xc/src/sgml/ecpg.sgmlin | 9744 +++++++++++++ doc-xc/src/sgml/errcodes.sgmlin | 79 + doc-xc/src/sgml/extend.sgmlin | 1224 ++ doc-xc/src/sgml/external-projects.sgmlin | 276 + .../src/sgml/fdwhandler.sgmlin | 0 doc-xc/src/sgml/features-supported.sgmlin | 2078 +++ doc-xc/src/sgml/features-unsupported.sgmlin | 1826 +++ doc-xc/src/sgml/features.sgmlin | 164 + .../src/sgml/file-fdw.sgmlin | 0 doc-xc/src/sgml/filelist.sgmlin | 196 + {doc => doc-xc}/src/sgml/fixrtf | 0 doc-xc/src/sgml/func.sgmlin |15401 ++++++++++++++++++++ doc-xc/src/sgml/fuzzystrmatch.sgmlin | 220 + .../src/sgml/generate-errcodes-table.pl | 0 {doc => doc-xc}/src/sgml/generate_history.pl | 0 doc-xc/src/sgml/geqo.sgmlin | 378 + doc-xc/src/sgml/gin.sgmlin | 551 + doc-xc/src/sgml/gist.sgmlin | 745 + doc-xc/src/sgml/high-availability.sgmlin | 2170 +++ doc-xc/src/sgml/history.sgmlin | 312 + doc-xc/src/sgml/hstore.sgmlin | 625 + doc-xc/src/sgml/indexam.sgmlin | 1133 ++ doc-xc/src/sgml/indices.sgmlin | 1259 ++ doc-xc/src/sgml/info.sgmlin | 113 + doc-xc/src/sgml/information_schema.sgmlin | 6953 +++++++++ .../src/sgml/install-windows.sgmlin | 0 doc-xc/src/sgml/installation.sgmlin | 4001 +++++ doc-xc/src/sgml/intagg.sgmlin | 127 + doc-xc/src/sgml/intarray.sgmlin | 348 + doc-xc/src/sgml/intro.sgmlin | 507 + doc-xc/src/sgml/isn.sgmlin | 394 + {doc => doc-xc}/src/sgml/jadetex.cfg | 0 doc-xc/src/sgml/keywords.sgmlin | 6121 ++++++++ doc-xc/src/sgml/legal.sgmlin | 62 + doc-xc/src/sgml/libpq.sgmlin | 8050 ++++++++++ doc-xc/src/sgml/lo.sgmlin | 138 + doc-xc/src/sgml/lobj.sgmlin | 750 + doc-xc/src/sgml/ltree.sgmlin | 693 + doc-xc/src/sgml/maintenance.sgmlin | 1006 ++ doc-xc/src/sgml/manage-ag.sgmlin | 573 + {doc => doc-xc}/src/sgml/mk_feature_tables.pl | 0 doc-xc/src/sgml/monitoring.sgmlin | 2067 +++ doc-xc/src/sgml/mvcc.sgmlin | 1701 +++ doc-xc/src/sgml/nls.sgmlin | 561 + doc-xc/src/sgml/notation.sgmlin | 81 + doc-xc/src/sgml/oid2name.sgmlin | 302 + doc-xc/src/sgml/pageinspect.sgmlin | 216 + doc-xc/src/sgml/passwordcheck.sgmlin | 64 + doc-xc/src/sgml/perform.sgmlin | 1296 ++ doc-xc/src/sgml/pgarchivecleanup.sgmlin | 175 + doc-xc/src/sgml/pgbench.sgmlin | 776 + doc-xc/src/sgml/pgbuffercache.sgmlin | 191 + doc-xc/src/sgml/pgcrypto.sgmlin | 1320 ++ doc-xc/src/sgml/pgfreespacemap.sgmlin | 137 + doc-xc/src/sgml/pgnotice.sgmlin | 8 + doc-xc/src/sgml/pgonly.sgmlin | 7 + doc-xc/src/sgml/pgrowlocks.sgmlin | 152 + doc-xc/src/sgml/pgstandby.sgmlin | 394 + doc-xc/src/sgml/pgstatstatements.sgmlin | 361 + doc-xc/src/sgml/pgstattuple.sgmlin | 286 + .../src/sgml/pgtestfsync.sgmlin | 0 doc-xc/src/sgml/pgtrgm.sgmlin | 297 + doc-xc/src/sgml/pgupgrade.sgmlin | 569 + doc-xc/src/sgml/planstats.sgmlin | 454 + doc-xc/src/sgml/plhandler.sgmlin | 238 + doc-xc/src/sgml/plperl.sgmlin | 1417 ++ doc-xc/src/sgml/plpgsql.sgmlin | 5281 +++++++ doc-xc/src/sgml/plpython.sgmlin | 1287 ++ doc-xc/src/sgml/pltcl.sgmlin | 879 ++ doc-xc/src/sgml/postgres.sgmlin | 376 + doc-xc/src/sgml/problems.sgmlin | 503 + doc-xc/src/sgml/protocol.sgmlin | 4821 ++++++ doc-xc/src/sgml/queries.sgmlin | 2139 +++ doc-xc/src/sgml/query.sgmlin | 971 ++ doc-xc/src/sgml/recovery-config.sgmlin | 453 + doc-xc/src/sgml/ref/abort.sgmlin | 108 + doc-xc/src/sgml/ref/allfiles.sgmlin | 196 + doc-xc/src/sgml/ref/alter_aggregate.sgmlin | 151 + .../src/sgml/ref/alter_collation.sgmlin | 0 doc-xc/src/sgml/ref/alter_conversion.sgmlin | 130 + doc-xc/src/sgml/ref/alter_database.sgmlin | 237 + .../src/sgml/ref/alter_default_privileges.sgmlin | 214 + doc-xc/src/sgml/ref/alter_domain.sgmlin | 275 + .../src/sgml/ref/alter_extension.sgmlin | 0 .../src/sgml/ref/alter_foreign_data_wrapper.sgmlin | 184 + .../src/sgml/ref/alter_foreign_table.sgmlin | 0 doc-xc/src/sgml/ref/alter_function.sgmlin | 327 + doc-xc/src/sgml/ref/alter_group.sgmlin | 132 + doc-xc/src/sgml/ref/alter_index.sgmlin | 223 + doc-xc/src/sgml/ref/alter_language.sgmlin | 93 + doc-xc/src/sgml/ref/alter_large_object.sgmlin | 82 + doc-xc/src/sgml/ref/alter_opclass.sgmlin | 121 + doc-xc/src/sgml/ref/alter_operator.sgmlin | 131 + doc-xc/src/sgml/ref/alter_opfamily.sgmlin | 355 + doc-xc/src/sgml/ref/alter_role.sgmlin | 326 + doc-xc/src/sgml/ref/alter_schema.sgmlin | 102 + doc-xc/src/sgml/ref/alter_sequence.sgmlin | 312 + doc-xc/src/sgml/ref/alter_server.sgmlin | 140 + doc-xc/src/sgml/ref/alter_table.sgmlin | 1092 ++ doc-xc/src/sgml/ref/alter_tablespace.sgmlin | 137 + doc-xc/src/sgml/ref/alter_trigger.sgmlin | 126 + doc-xc/src/sgml/ref/alter_tsconfig.sgmlin | 191 + doc-xc/src/sgml/ref/alter_tsdictionary.sgmlin | 172 + doc-xc/src/sgml/ref/alter_tsparser.sgmlin | 95 + doc-xc/src/sgml/ref/alter_tstemplate.sgmlin | 93 + doc-xc/src/sgml/ref/alter_type.sgmlin | 339 + doc-xc/src/sgml/ref/alter_user.sgmlin | 81 + doc-xc/src/sgml/ref/alter_user_mapping.sgmlin | 141 + doc-xc/src/sgml/ref/alter_view.sgmlin | 154 + doc-xc/src/sgml/ref/analyze.sgmlin | 212 + doc-xc/src/sgml/ref/begin.sgmlin | 172 + doc-xc/src/sgml/ref/checkpoint.sgmlin | 73 + doc-xc/src/sgml/ref/clean_connection.sgmlin | 153 + doc-xc/src/sgml/ref/close.sgmlin | 135 + doc-xc/src/sgml/ref/cluster.sgmlin | 247 + doc-xc/src/sgml/ref/clusterdb.sgmlin | 311 + doc-xc/src/sgml/ref/comment.sgmlin | 309 + doc-xc/src/sgml/ref/commit.sgmlin | 97 + doc-xc/src/sgml/ref/commit_prepared.sgmlin | 104 + doc-xc/src/sgml/ref/copy.sgmlin | 971 ++ doc-xc/src/sgml/ref/create_aggregate.sgmlin | 496 + doc-xc/src/sgml/ref/create_barrier.sgmlin | 55 + doc-xc/src/sgml/ref/create_cast.sgmlin | 446 + .../src/sgml/ref/create_collation.sgmlin | 0 doc-xc/src/sgml/ref/create_conversion.sgmlin | 179 + doc-xc/src/sgml/ref/create_database.sgmlin | 322 + doc-xc/src/sgml/ref/create_domain.sgmlin | 229 + .../src/sgml/ref/create_extension.sgmlin | 0 .../sgml/ref/create_foreign_data_wrapper.sgmlin | 208 + .../src/sgml/ref/create_foreign_table.sgmlin | 0 doc-xc/src/sgml/ref/create_function.sgmlin | 783 + doc-xc/src/sgml/ref/create_group.sgmlin | 72 + doc-xc/src/sgml/ref/create_index.sgmlin | 708 + doc-xc/src/sgml/ref/create_language.sgmlin | 370 + doc-xc/src/sgml/ref/create_opclass.sgmlin | 329 + doc-xc/src/sgml/ref/create_operator.sgmlin | 304 + doc-xc/src/sgml/ref/create_opfamily.sgmlin | 125 + doc-xc/src/sgml/ref/create_role.sgmlin | 514 + doc-xc/src/sgml/ref/create_rule.sgmlin | 298 + doc-xc/src/sgml/ref/create_schema.sgmlin | 209 + doc-xc/src/sgml/ref/create_sequence.sgmlin | 366 + doc-xc/src/sgml/ref/create_server.sgmlin | 178 + doc-xc/src/sgml/ref/create_table.sgmlin | 1785 +++ doc-xc/src/sgml/ref/create_table_as.sgmlin | 370 + doc-xc/src/sgml/ref/create_tablespace.sgmlin | 167 + doc-xc/src/sgml/ref/create_trigger.sgmlin | 576 + doc-xc/src/sgml/ref/create_tsconfig.sgmlin | 128 + doc-xc/src/sgml/ref/create_tsdictionary.sgmlin | 143 + doc-xc/src/sgml/ref/create_tsparser.sgmlin | 155 + doc-xc/src/sgml/ref/create_tstemplate.sgmlin | 128 + doc-xc/src/sgml/ref/create_type.sgmlin | 862 ++ doc-xc/src/sgml/ref/create_user.sgmlin | 85 + doc-xc/src/sgml/ref/create_user_mapping.sgmlin | 137 + doc-xc/src/sgml/ref/create_view.sgmlin | 285 + doc-xc/src/sgml/ref/createdb.sgmlin | 397 + doc-xc/src/sgml/ref/createlang.sgmlin | 310 + doc-xc/src/sgml/ref/createuser.sgmlin | 473 + doc-xc/src/sgml/ref/deallocate.sgmlin | 109 + doc-xc/src/sgml/ref/declare.sgmlin | 384 + doc-xc/src/sgml/ref/delete.sgmlin | 350 + doc-xc/src/sgml/ref/discard.sgmlin | 111 + doc-xc/src/sgml/ref/do.sgmlin | 130 + doc-xc/src/sgml/ref/drop_aggregate.sgmlin | 126 + doc-xc/src/sgml/ref/drop_cast.sgmlin | 117 + .../src/sgml/ref/drop_collation.sgmlin | 0 doc-xc/src/sgml/ref/drop_conversion.sgmlin | 112 + doc-xc/src/sgml/ref/drop_database.sgmlin | 114 + doc-xc/src/sgml/ref/drop_domain.sgmlin | 121 + .../src/sgml/ref/drop_extension.sgmlin | 0 .../src/sgml/ref/drop_foreign_data_wrapper.sgmlin | 129 + .../src/sgml/ref/drop_foreign_table.sgmlin | 0 doc-xc/src/sgml/ref/drop_function.sgmlin | 159 + doc-xc/src/sgml/ref/drop_group.sgmlin | 55 + doc-xc/src/sgml/ref/drop_index.sgmlin | 119 + doc-xc/src/sgml/ref/drop_language.sgmlin | 128 + doc-xc/src/sgml/ref/drop_opclass.sgmlin | 149 + doc-xc/src/sgml/ref/drop_operator.sgmlin | 149 + doc-xc/src/sgml/ref/drop_opfamily.sgmlin | 138 + doc-xc/src/sgml/ref/drop_owned.sgmlin | 125 + doc-xc/src/sgml/ref/drop_role.sgmlin | 135 + doc-xc/src/sgml/ref/drop_rule.sgmlin | 121 + doc-xc/src/sgml/ref/drop_schema.sgmlin | 129 + doc-xc/src/sgml/ref/drop_sequence.sgmlin | 116 + doc-xc/src/sgml/ref/drop_server.sgmlin | 129 + doc-xc/src/sgml/ref/drop_table.sgmlin | 135 + doc-xc/src/sgml/ref/drop_tablespace.sgmlin | 118 + doc-xc/src/sgml/ref/drop_trigger.sgmlin | 138 + doc-xc/src/sgml/ref/drop_tsconfig.sgmlin | 121 + doc-xc/src/sgml/ref/drop_tsdictionary.sgmlin | 120 + doc-xc/src/sgml/ref/drop_tsparser.sgmlin | 118 + doc-xc/src/sgml/ref/drop_tstemplate.sgmlin | 117 + doc-xc/src/sgml/ref/drop_type.sgmlin | 127 + doc-xc/src/sgml/ref/drop_user.sgmlin | 62 + doc-xc/src/sgml/ref/drop_user_mapping.sgmlin | 127 + doc-xc/src/sgml/ref/drop_view.sgmlin | 121 + doc-xc/src/sgml/ref/dropdb.sgmlin | 272 + doc-xc/src/sgml/ref/droplang.sgmlin | 308 + doc-xc/src/sgml/ref/dropuser.sgmlin | 298 + doc-xc/src/sgml/ref/ecpg-ref.sgmlin | 265 + .../ref/end.sgml => doc-xc/src/sgml/ref/end.sgmlin | 0 doc-xc/src/sgml/ref/execute.sgmlin | 132 + doc-xc/src/sgml/ref/execute_direct.sgmlin | 134 + doc-xc/src/sgml/ref/explain.sgmlin | 411 + doc-xc/src/sgml/ref/fetch.sgmlin | 505 + doc-xc/src/sgml/ref/grant.sgmlin | 660 + doc-xc/src/sgml/ref/gtm.sgmlin | 148 + doc-xc/src/sgml/ref/gtm_ctl.sgmlin | 241 + doc-xc/src/sgml/ref/gtm_proxy.sgmlin | 139 + doc-xc/src/sgml/ref/initdb.sgmlin | 389 + doc-xc/src/sgml/ref/insert.sgmlin | 402 + doc-xc/src/sgml/ref/listen.sgmlin | 147 + doc-xc/src/sgml/ref/load.sgmlin | 93 + doc-xc/src/sgml/ref/lock.sgmlin | 249 + doc-xc/src/sgml/ref/move.sgmlin | 126 + doc-xc/src/sgml/ref/notify.sgmlin | 240 + .../src/sgml/ref/pg_basebackup.sgmlin | 0 doc-xc/src/sgml/ref/pg_config-ref.sgmlin | 412 + doc-xc/src/sgml/ref/pg_controldata.sgmlin | 82 + doc-xc/src/sgml/ref/pg_ctl-ref.sgml.jp | 596 + doc-xc/src/sgml/ref/pg_ctl-ref.sgml.org | 597 + doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin | 650 + doc-xc/src/sgml/ref/pg_dump.sgmlin | 1095 ++ doc-xc/src/sgml/ref/pg_dumpall.sgmlin | 606 + doc-xc/src/sgml/ref/pg_resetxlog.sgmlin | 218 + .../src/sgml/ref/pg_restore.sgmlin | 0 doc-xc/src/sgml/ref/pgxc_ddl.sgmlin | 313 + doc-xc/src/sgml/ref/postgres-ref.sgmlin | 913 ++ doc-xc/src/sgml/ref/postmaster.sgmlin | 51 + doc-xc/src/sgml/ref/prepare.sgmlin | 216 + doc-xc/src/sgml/ref/prepare_transaction.sgmlin | 181 + doc-xc/src/sgml/ref/psql-ref.sgmlin | 3553 +++++ doc-xc/src/sgml/ref/reassign_owned.sgmlin | 129 + doc-xc/src/sgml/ref/reindex.sgmlin | 289 + doc-xc/src/sgml/ref/reindexdb.sgmlin | 367 + doc-xc/src/sgml/ref/release_savepoint.sgmlin | 141 + doc-xc/src/sgml/ref/reset.sgmlin | 121 + doc-xc/src/sgml/ref/revoke.sgmlin | 295 + doc-xc/src/sgml/ref/rollback.sgmlin | 99 + doc-xc/src/sgml/ref/rollback_prepared.sgmlin | 101 + doc-xc/src/sgml/ref/rollback_to.sgmlin | 169 + doc-xc/src/sgml/ref/savepoint.sgmlin | 147 + .../src/sgml/ref/security_label.sgmlin | 0 doc-xc/src/sgml/ref/select.sgmlin | 1822 +++ doc-xc/src/sgml/ref/select_into.sgmlin | 165 + doc-xc/src/sgml/ref/set.sgmlin | 341 + doc-xc/src/sgml/ref/set_constraints.sgmlin | 125 + doc-xc/src/sgml/ref/set_role.sgmlin | 150 + doc-xc/src/sgml/ref/set_session_auth.sgmlin | 128 + doc-xc/src/sgml/ref/set_transaction.sgmlin | 215 + doc-xc/src/sgml/ref/show.sgmlin | 217 + doc-xc/src/sgml/ref/start_transaction.sgmlin | 109 + doc-xc/src/sgml/ref/truncate.sgmlin | 229 + doc-xc/src/sgml/ref/unlisten.sgmlin | 145 + doc-xc/src/sgml/ref/update.sgmlin | 456 + doc-xc/src/sgml/ref/vacuum.sgmlin | 303 + doc-xc/src/sgml/ref/vacuumdb.sgmlin | 412 + doc-xc/src/sgml/ref/values.sgmlin | 261 + doc-xc/src/sgml/reference.sgmlin | 299 + doc-xc/src/sgml/regress.sgmlin | 659 + .../src/sgml/release-7.4.sgmlin | 0 .../src/sgml/release-8.0.sgmlin | 0 .../src/sgml/release-8.1.sgmlin | 0 doc-xc/src/sgml/release-8.2.sgmlin | 6410 ++++++++ doc-xc/src/sgml/release-8.3.sgmlin | 6433 ++++++++ doc-xc/src/sgml/release-8.4.sgmlin | 5959 ++++++++ doc-xc/src/sgml/release-9.0.sgmlin | 4156 ++++++ .../src/sgml/release-9.1.sgmlin | 0 .../src/sgml/release-old.sgmlin | 0 .../release.sgml => doc-xc/src/sgml/release.sgmlin | 0 doc-xc/src/sgml/rowtypes.sgmlin | 332 + doc-xc/src/sgml/rules.sgmlin | 2196 +++ doc-xc/src/sgml/runtime.sgmlin | 3117 ++++ doc-xc/src/sgml/seg.sgmlin | 404 + .../sepgsql.sgml => doc-xc/src/sgml/sepgsql.sgmlin | 0 doc-xc/src/sgml/sourcerepo.sgmlin | 175 + doc-xc/src/sgml/sources.sgmlin | 786 + doc-xc/src/sgml/spi.sgmlin | 4107 ++++++ doc-xc/src/sgml/sql.sgmlin | 2164 +++ doc-xc/src/sgml/sslinfo.sgmlin | 213 + .../src/sgml/standalone-install.sgmlin | 0 doc-xc/src/sgml/start.sgmlin | 672 + doc-xc/src/sgml/storage.sgmlin | 882 ++ {doc => doc-xc}/src/sgml/stylesheet-common.xsl | 0 {doc => doc-xc}/src/sgml/stylesheet-fo.xsl | 0 {doc => doc-xc}/src/sgml/stylesheet-hh.xsl | 0 {doc => doc-xc}/src/sgml/stylesheet-man.xsl | 0 {doc => doc-xc}/src/sgml/stylesheet.css | 0 {doc => doc-xc}/src/sgml/stylesheet.dsl | 0 {doc => doc-xc}/src/sgml/stylesheet.xsl | 0 doc-xc/src/sgml/syntax.sgmlin | 2612 ++++ doc-xc/src/sgml/tablefunc.sgmlin | 822 ++ doc-xc/src/sgml/test-parser.sgmlin | 93 + doc-xc/src/sgml/textsearch.sgmlin | 3863 +++++ doc-xc/src/sgml/trigger.sgmlin | 885 ++ doc-xc/src/sgml/tsearch2.sgmlin | 207 + doc-xc/src/sgml/typeconv.sgmlin | 1049 ++ doc-xc/src/sgml/unaccent.sgmlin | 167 + doc-xc/src/sgml/user-manag.sgmlin | 479 + doc-xc/src/sgml/uuid-ossp.sgmlin | 178 + doc-xc/src/sgml/vacuumlo.sgmlin | 149 + doc-xc/src/sgml/version.sgmlin | 2 + doc-xc/src/sgml/wal.sgmlin | 800 + doc-xc/src/sgml/wk.patch | 290 + doc-xc/src/sgml/xaggr.sgmlin | 332 + doc-xc/src/sgml/xconly.sgmlin | 7 + doc-xc/src/sgml/xfunc.sgmlin | 3461 +++++ doc-xc/src/sgml/xindex.sgmlin | 1107 ++ doc-xc/src/sgml/xml2.sgmlin | 485 + doc-xc/src/sgml/xoper.sgmlin | 508 + doc-xc/src/sgml/xplang.sgmlin | 262 + doc-xc/src/sgml/xtypes.sgmlin | 306 + doc-xc/tools/makesgml/README | 63 + doc-xc/tools/makesgml/makesgml.c | 331 + doc-xc/tools/makesgml/test.multilang | 22 + doc-xc/tools/makesgml/test.out | 13 + doc-xc/tools/makesgml/test.test | 13 + 365 files changed, 255320 insertions(+), 4 deletions(-) copy {doc => doc-xc}/KNOWN_BUGS (100%) copy {doc => doc-xc}/MISSING_FEATURES (100%) copy {doc => doc-xc}/Makefile (100%) copy {doc => doc-xc}/README.mb.big5 (100%) copy {doc => doc-xc}/README.mb.jp (100%) copy {doc => doc-xc}/TODO (100%) copy {doc => doc-xc}/bug.template (100%) copy {doc => doc-xc}/src/Makefile (100%) copy {doc => doc-xc}/src/sgml/.gitignore (100%) create mode 100644 doc-xc/src/sgml/Makefile create mode 100644 doc-xc/src/sgml/Makefile.xc.wk copy {doc => doc-xc}/src/sgml/README.links (100%) create mode 100644 doc-xc/src/sgml/acronyms.sgmlin create mode 100644 doc-xc/src/sgml/adminpack.sgmlin create mode 100644 doc-xc/src/sgml/advanced.sgmlin create mode 100644 doc-xc/src/sgml/arch-dev.sgmlin create mode 100644 doc-xc/src/sgml/array.sgmlin copy doc/src/sgml/auth-delay.sgml => doc-xc/src/sgml/auth-delay.sgmlin (100%) create mode 100644 doc-xc/src/sgml/auto-explain.sgmlin create mode 100644 doc-xc/src/sgml/backup.sgmlin create mode 100644 doc-xc/src/sgml/biblio.sgmlin create mode 100644 doc-xc/src/sgml/bki.sgmlin create mode 100644 doc-xc/src/sgml/bookindex.sgmlin create mode 100644 doc-xc/src/sgml/btree-gin.sgmlin create mode 100644 doc-xc/src/sgml/btree-gist.sgmlin create mode 100644 doc-xc/src/sgml/catalogs.sgmlin create mode 100644 doc-xc/src/sgml/charset.sgmlin create mode 100644 doc-xc/src/sgml/chkpass.sgmlin create mode 100644 doc-xc/src/sgml/citext.sgmlin create mode 100644 doc-xc/src/sgml/client-auth.sgmlin create mode 100644 doc-xc/src/sgml/common.sgmlin create mode 100644 doc-xc/src/sgml/config.sgmlin copy doc/src/sgml/contacts.sgml => doc-xc/src/sgml/contacts.sgmlin (100%) create mode 100644 doc-xc/src/sgml/contrib-spi.sgmlin create mode 100644 doc-xc/src/sgml/contrib.sgmlin create mode 100644 doc-xc/src/sgml/cube.sgmlin create mode 100644 doc-xc/src/sgml/datatype.sgmlin create mode 100644 doc-xc/src/sgml/datetime.sgmlin create mode 100644 doc-xc/src/sgml/dblink.sgmlin create mode 100644 doc-xc/src/sgml/ddl.sgmlin create mode 100644 doc-xc/src/sgml/dfunc.sgmlin create mode 100644 doc-xc/src/sgml/dict-int.sgmlin create mode 100644 doc-xc/src/sgml/dict-xsyn.sgmlin create mode 100644 doc-xc/src/sgml/diskusage.sgmlin create mode 100644 doc-xc/src/sgml/dml.sgmlin create mode 100644 doc-xc/src/sgml/docguide.sgmlin copy doc/src/sgml/dummy-seclabel.sgml => doc-xc/src/sgml/dummy-seclabel.sgmlin (100%) create mode 100644 doc-xc/src/sgml/earthdistance.sgmlin create mode 100644 doc-xc/src/sgml/ecpg.sgmlin create mode 100644 doc-xc/src/sgml/errcodes.sgmlin create mode 100644 doc-xc/src/sgml/extend.sgmlin create mode 100644 doc-xc/src/sgml/external-projects.sgmlin copy doc/src/sgml/fdwhandler.sgml => doc-xc/src/sgml/fdwhandler.sgmlin (100%) create mode 100644 doc-xc/src/sgml/features-supported.sgmlin create mode 100644 doc-xc/src/sgml/features-unsupported.sgmlin create mode 100644 doc-xc/src/sgml/features.sgmlin copy doc/src/sgml/file-fdw.sgml => doc-xc/src/sgml/file-fdw.sgmlin (100%) create mode 100644 doc-xc/src/sgml/filelist.sgmlin copy {doc => doc-xc}/src/sgml/fixrtf (100%) create mode 100644 doc-xc/src/sgml/func.sgmlin create mode 100644 doc-xc/src/sgml/fuzzystrmatch.sgmlin copy {doc => doc-xc}/src/sgml/generate-errcodes-table.pl (100%) copy {doc => doc-xc}/src/sgml/generate_history.pl (100%) create mode 100644 doc-xc/src/sgml/geqo.sgmlin create mode 100644 doc-xc/src/sgml/gin.sgmlin create mode 100644 doc-xc/src/sgml/gist.sgmlin create mode 100644 doc-xc/src/sgml/high-availability.sgmlin create mode 100644 doc-xc/src/sgml/history.sgmlin create mode 100644 doc-xc/src/sgml/hstore.sgmlin create mode 100644 doc-xc/src/sgml/indexam.sgmlin create mode 100644 doc-xc/src/sgml/indices.sgmlin create mode 100644 doc-xc/src/sgml/info.sgmlin create mode 100644 doc-xc/src/sgml/information_schema.sgmlin copy doc/src/sgml/install-windows.sgml => doc-xc/src/sgml/install-windows.sgmlin (100%) create mode 100644 doc-xc/src/sgml/installation.sgmlin create mode 100644 doc-xc/src/sgml/intagg.sgmlin create mode 100644 doc-xc/src/sgml/intarray.sgmlin create mode 100644 doc-xc/src/sgml/intro.sgmlin create mode 100644 doc-xc/src/sgml/isn.sgmlin copy {doc => doc-xc}/src/sgml/jadetex.cfg (100%) create mode 100644 doc-xc/src/sgml/keywords.sgmlin create mode 100644 doc-xc/src/sgml/legal.sgmlin create mode 100644 doc-xc/src/sgml/libpq.sgmlin create mode 100644 doc-xc/src/sgml/lo.sgmlin create mode 100644 doc-xc/src/sgml/lobj.sgmlin create mode 100644 doc-xc/src/sgml/ltree.sgmlin create mode 100644 doc-xc/src/sgml/maintenance.sgmlin create mode 100644 doc-xc/src/sgml/manage-ag.sgmlin copy {doc => doc-xc}/src/sgml/mk_feature_tables.pl (100%) create mode 100644 doc-xc/src/sgml/monitoring.sgmlin create mode 100644 doc-xc/src/sgml/mvcc.sgmlin create mode 100644 doc-xc/src/sgml/nls.sgmlin create mode 100644 doc-xc/src/sgml/notation.sgmlin create mode 100644 doc-xc/src/sgml/oid2name.sgmlin create mode 100644 doc-xc/src/sgml/pageinspect.sgmlin create mode 100644 doc-xc/src/sgml/passwordcheck.sgmlin create mode 100644 doc-xc/src/sgml/perform.sgmlin create mode 100644 doc-xc/src/sgml/pgarchivecleanup.sgmlin create mode 100644 doc-xc/src/sgml/pgbench.sgmlin create mode 100644 doc-xc/src/sgml/pgbuffercache.sgmlin create mode 100644 doc-xc/src/sgml/pgcrypto.sgmlin create mode 100644 doc-xc/src/sgml/pgfreespacemap.sgmlin create mode 100644 doc-xc/src/sgml/pgnotice.sgmlin create mode 100644 doc-xc/src/sgml/pgonly.sgmlin create mode 100644 doc-xc/src/sgml/pgrowlocks.sgmlin create mode 100644 doc-xc/src/sgml/pgstandby.sgmlin create mode 100644 doc-xc/src/sgml/pgstatstatements.sgmlin create mode 100644 doc-xc/src/sgml/pgstattuple.sgmlin copy doc/src/sgml/pgtestfsync.sgml => doc-xc/src/sgml/pgtestfsync.sgmlin (100%) create mode 100644 doc-xc/src/sgml/pgtrgm.sgmlin create mode 100644 doc-xc/src/sgml/pgupgrade.sgmlin create mode 100644 doc-xc/src/sgml/planstats.sgmlin create mode 100644 doc-xc/src/sgml/plhandler.sgmlin create mode 100644 doc-xc/src/sgml/plperl.sgmlin create mode 100644 doc-xc/src/sgml/plpgsql.sgmlin create mode 100644 doc-xc/src/sgml/plpython.sgmlin create mode 100644 doc-xc/src/sgml/pltcl.sgmlin create mode 100644 doc-xc/src/sgml/postgres.sgmlin create mode 100644 doc-xc/src/sgml/problems.sgmlin create mode 100644 doc-xc/src/sgml/protocol.sgmlin create mode 100644 doc-xc/src/sgml/queries.sgmlin create mode 100644 doc-xc/src/sgml/query.sgmlin create mode 100644 doc-xc/src/sgml/recovery-config.sgmlin create mode 100644 doc-xc/src/sgml/ref/abort.sgmlin create mode 100644 doc-xc/src/sgml/ref/allfiles.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_aggregate.sgmlin copy doc/src/sgml/ref/alter_collation.sgml => doc-xc/src/sgml/ref/alter_collation.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/alter_conversion.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_database.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_default_privileges.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_domain.sgmlin copy doc/src/sgml/ref/alter_extension.sgml => doc-xc/src/sgml/ref/alter_extension.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/alter_foreign_data_wrapper.sgmlin copy doc/src/sgml/ref/alter_foreign_table.sgml => doc-xc/src/sgml/ref/alter_foreign_table.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/alter_function.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_group.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_index.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_language.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_large_object.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_opclass.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_operator.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_opfamily.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_role.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_schema.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_sequence.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_server.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_table.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_tablespace.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_trigger.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_tsconfig.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_tsdictionary.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_tsparser.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_tstemplate.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_type.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_user.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_user_mapping.sgmlin create mode 100644 doc-xc/src/sgml/ref/alter_view.sgmlin create mode 100644 doc-xc/src/sgml/ref/analyze.sgmlin create mode 100644 doc-xc/src/sgml/ref/begin.sgmlin create mode 100644 doc-xc/src/sgml/ref/checkpoint.sgmlin create mode 100644 doc-xc/src/sgml/ref/clean_connection.sgmlin create mode 100644 doc-xc/src/sgml/ref/close.sgmlin create mode 100644 doc-xc/src/sgml/ref/cluster.sgmlin create mode 100644 doc-xc/src/sgml/ref/clusterdb.sgmlin create mode 100644 doc-xc/src/sgml/ref/comment.sgmlin create mode 100644 doc-xc/src/sgml/ref/commit.sgmlin create mode 100644 doc-xc/src/sgml/ref/commit_prepared.sgmlin create mode 100644 doc-xc/src/sgml/ref/copy.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_aggregate.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_barrier.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_cast.sgmlin copy doc/src/sgml/ref/create_collation.sgml => doc-xc/src/sgml/ref/create_collation.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/create_conversion.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_database.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_domain.sgmlin copy doc/src/sgml/ref/create_extension.sgml => doc-xc/src/sgml/ref/create_extension.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/create_foreign_data_wrapper.sgmlin copy doc/src/sgml/ref/create_foreign_table.sgml => doc-xc/src/sgml/ref/create_foreign_table.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/create_function.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_group.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_index.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_language.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_opclass.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_operator.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_opfamily.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_role.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_rule.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_schema.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_sequence.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_server.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_table.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_table_as.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_tablespace.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_trigger.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_tsconfig.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_tsdictionary.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_tsparser.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_tstemplate.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_type.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_user.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_user_mapping.sgmlin create mode 100644 doc-xc/src/sgml/ref/create_view.sgmlin create mode 100644 doc-xc/src/sgml/ref/createdb.sgmlin create mode 100644 doc-xc/src/sgml/ref/createlang.sgmlin create mode 100644 doc-xc/src/sgml/ref/createuser.sgmlin create mode 100644 doc-xc/src/sgml/ref/deallocate.sgmlin create mode 100644 doc-xc/src/sgml/ref/declare.sgmlin create mode 100644 doc-xc/src/sgml/ref/delete.sgmlin create mode 100644 doc-xc/src/sgml/ref/discard.sgmlin create mode 100644 doc-xc/src/sgml/ref/do.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_aggregate.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_cast.sgmlin copy doc/src/sgml/ref/drop_collation.sgml => doc-xc/src/sgml/ref/drop_collation.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/drop_conversion.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_database.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_domain.sgmlin copy doc/src/sgml/ref/drop_extension.sgml => doc-xc/src/sgml/ref/drop_extension.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/drop_foreign_data_wrapper.sgmlin copy doc/src/sgml/ref/drop_foreign_table.sgml => doc-xc/src/sgml/ref/drop_foreign_table.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/drop_function.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_group.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_index.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_language.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_opclass.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_operator.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_opfamily.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_owned.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_role.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_rule.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_schema.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_sequence.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_server.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_table.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_tablespace.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_trigger.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_tsconfig.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_tsdictionary.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_tsparser.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_tstemplate.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_type.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_user.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_user_mapping.sgmlin create mode 100644 doc-xc/src/sgml/ref/drop_view.sgmlin create mode 100644 doc-xc/src/sgml/ref/dropdb.sgmlin create mode 100644 doc-xc/src/sgml/ref/droplang.sgmlin create mode 100644 doc-xc/src/sgml/ref/dropuser.sgmlin create mode 100644 doc-xc/src/sgml/ref/ecpg-ref.sgmlin copy doc/src/sgml/ref/end.sgml => doc-xc/src/sgml/ref/end.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/execute.sgmlin create mode 100644 doc-xc/src/sgml/ref/execute_direct.sgmlin create mode 100644 doc-xc/src/sgml/ref/explain.sgmlin create mode 100644 doc-xc/src/sgml/ref/fetch.sgmlin create mode 100644 doc-xc/src/sgml/ref/grant.sgmlin create mode 100644 doc-xc/src/sgml/ref/gtm.sgmlin create mode 100644 doc-xc/src/sgml/ref/gtm_ctl.sgmlin create mode 100644 doc-xc/src/sgml/ref/gtm_proxy.sgmlin create mode 100644 doc-xc/src/sgml/ref/initdb.sgmlin create mode 100644 doc-xc/src/sgml/ref/insert.sgmlin create mode 100644 doc-xc/src/sgml/ref/listen.sgmlin create mode 100644 doc-xc/src/sgml/ref/load.sgmlin create mode 100644 doc-xc/src/sgml/ref/lock.sgmlin create mode 100644 doc-xc/src/sgml/ref/move.sgmlin create mode 100644 doc-xc/src/sgml/ref/notify.sgmlin copy doc/src/sgml/ref/pg_basebackup.sgml => doc-xc/src/sgml/ref/pg_basebackup.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/pg_config-ref.sgmlin create mode 100644 doc-xc/src/sgml/ref/pg_controldata.sgmlin create mode 100644 doc-xc/src/sgml/ref/pg_ctl-ref.sgml.jp create mode 100644 doc-xc/src/sgml/ref/pg_ctl-ref.sgml.org create mode 100644 doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin create mode 100644 doc-xc/src/sgml/ref/pg_dump.sgmlin create mode 100644 doc-xc/src/sgml/ref/pg_dumpall.sgmlin create mode 100644 doc-xc/src/sgml/ref/pg_resetxlog.sgmlin copy doc/src/sgml/ref/pg_restore.sgml => doc-xc/src/sgml/ref/pg_restore.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/pgxc_ddl.sgmlin create mode 100644 doc-xc/src/sgml/ref/postgres-ref.sgmlin create mode 100644 doc-xc/src/sgml/ref/postmaster.sgmlin create mode 100644 doc-xc/src/sgml/ref/prepare.sgmlin create mode 100644 doc-xc/src/sgml/ref/prepare_transaction.sgmlin create mode 100644 doc-xc/src/sgml/ref/psql-ref.sgmlin create mode 100644 doc-xc/src/sgml/ref/reassign_owned.sgmlin create mode 100644 doc-xc/src/sgml/ref/reindex.sgmlin create mode 100644 doc-xc/src/sgml/ref/reindexdb.sgmlin create mode 100644 doc-xc/src/sgml/ref/release_savepoint.sgmlin create mode 100644 doc-xc/src/sgml/ref/reset.sgmlin create mode 100644 doc-xc/src/sgml/ref/revoke.sgmlin create mode 100644 doc-xc/src/sgml/ref/rollback.sgmlin create mode 100644 doc-xc/src/sgml/ref/rollback_prepared.sgmlin create mode 100644 doc-xc/src/sgml/ref/rollback_to.sgmlin create mode 100644 doc-xc/src/sgml/ref/savepoint.sgmlin copy doc/src/sgml/ref/security_label.sgml => doc-xc/src/sgml/ref/security_label.sgmlin (100%) create mode 100644 doc-xc/src/sgml/ref/select.sgmlin create mode 100644 doc-xc/src/sgml/ref/select_into.sgmlin create mode 100644 doc-xc/src/sgml/ref/set.sgmlin create mode 100644 doc-xc/src/sgml/ref/set_constraints.sgmlin create mode 100644 doc-xc/src/sgml/ref/set_role.sgmlin create mode 100644 doc-xc/src/sgml/ref/set_session_auth.sgmlin create mode 100644 doc-xc/src/sgml/ref/set_transaction.sgmlin create mode 100644 doc-xc/src/sgml/ref/show.sgmlin create mode 100644 doc-xc/src/sgml/ref/start_transaction.sgmlin create mode 100644 doc-xc/src/sgml/ref/truncate.sgmlin create mode 100644 doc-xc/src/sgml/ref/unlisten.sgmlin create mode 100644 doc-xc/src/sgml/ref/update.sgmlin create mode 100644 doc-xc/src/sgml/ref/vacuum.sgmlin create mode 100644 doc-xc/src/sgml/ref/vacuumdb.sgmlin create mode 100644 doc-xc/src/sgml/ref/values.sgmlin create mode 100644 doc-xc/src/sgml/reference.sgmlin create mode 100644 doc-xc/src/sgml/regress.sgmlin copy doc/src/sgml/release-7.4.sgml => doc-xc/src/sgml/release-7.4.sgmlin (100%) copy doc/src/sgml/release-8.0.sgml => doc-xc/src/sgml/release-8.0.sgmlin (100%) copy doc/src/sgml/release-8.1.sgml => doc-xc/src/sgml/release-8.1.sgmlin (100%) create mode 100644 doc-xc/src/sgml/release-8.2.sgmlin create mode 100644 doc-xc/src/sgml/release-8.3.sgmlin create mode 100644 doc-xc/src/sgml/release-8.4.sgmlin create mode 100644 doc-xc/src/sgml/release-9.0.sgmlin copy doc/src/sgml/release-9.1.sgml => doc-xc/src/sgml/release-9.1.sgmlin (100%) copy doc/src/sgml/release-old.sgml => doc-xc/src/sgml/release-old.sgmlin (100%) copy doc/src/sgml/release.sgml => doc-xc/src/sgml/release.sgmlin (100%) create mode 100644 doc-xc/src/sgml/rowtypes.sgmlin create mode 100644 doc-xc/src/sgml/rules.sgmlin create mode 100644 doc-xc/src/sgml/runtime.sgmlin create mode 100644 doc-xc/src/sgml/seg.sgmlin copy doc/src/sgml/sepgsql.sgml => doc-xc/src/sgml/sepgsql.sgmlin (100%) create mode 100644 doc-xc/src/sgml/sourcerepo.sgmlin create mode 100644 doc-xc/src/sgml/sources.sgmlin create mode 100644 doc-xc/src/sgml/spi.sgmlin create mode 100644 doc-xc/src/sgml/sql.sgmlin create mode 100644 doc-xc/src/sgml/sslinfo.sgmlin copy doc/src/sgml/standalone-install.sgml => doc-xc/src/sgml/standalone-install.sgmlin (100%) create mode 100644 doc-xc/src/sgml/start.sgmlin create mode 100644 doc-xc/src/sgml/storage.sgmlin copy {doc => doc-xc}/src/sgml/stylesheet-common.xsl (100%) copy {doc => doc-xc}/src/sgml/stylesheet-fo.xsl (100%) copy {doc => doc-xc}/src/sgml/stylesheet-hh.xsl (100%) copy {doc => doc-xc}/src/sgml/stylesheet-man.xsl (100%) copy {doc => doc-xc}/src/sgml/stylesheet.css (100%) copy {doc => doc-xc}/src/sgml/stylesheet.dsl (100%) copy {doc => doc-xc}/src/sgml/stylesheet.xsl (100%) create mode 100644 doc-xc/src/sgml/syntax.sgmlin create mode 100644 doc-xc/src/sgml/tablefunc.sgmlin create mode 100644 doc-xc/src/sgml/test-parser.sgmlin create mode 100644 doc-xc/src/sgml/textsearch.sgmlin create mode 100644 doc-xc/src/sgml/trigger.sgmlin create mode 100644 doc-xc/src/sgml/tsearch2.sgmlin create mode 100644 doc-xc/src/sgml/typeconv.sgmlin create mode 100644 doc-xc/src/sgml/unaccent.sgmlin create mode 100644 doc-xc/src/sgml/user-manag.sgmlin create mode 100644 doc-xc/src/sgml/uuid-ossp.sgmlin create mode 100644 doc-xc/src/sgml/vacuumlo.sgmlin create mode 100644 doc-xc/src/sgml/version.sgmlin create mode 100644 doc-xc/src/sgml/wal.sgmlin create mode 100644 doc-xc/src/sgml/wk.patch create mode 100644 doc-xc/src/sgml/xaggr.sgmlin create mode 100644 doc-xc/src/sgml/xconly.sgmlin create mode 100644 doc-xc/src/sgml/xfunc.sgmlin create mode 100644 doc-xc/src/sgml/xindex.sgmlin create mode 100644 doc-xc/src/sgml/xml2.sgmlin create mode 100644 doc-xc/src/sgml/xoper.sgmlin create mode 100644 doc-xc/src/sgml/xplang.sgmlin create mode 100644 doc-xc/src/sgml/xtypes.sgmlin create mode 100644 doc-xc/tools/makesgml/README create mode 100644 doc-xc/tools/makesgml/makesgml.c create mode 100644 doc-xc/tools/makesgml/test.multilang create mode 100644 doc-xc/tools/makesgml/test.out create mode 100644 doc-xc/tools/makesgml/test.test hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-01 04:55:25
|
Project "Postgres-XC". The branch, master has been updated via 3c79518f4e24a7e1265993b01217812c0a61bea4 (commit) from 5073856871b00199c513ed140b3c35aac88eb0d8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h= commit 3c79518f4e24a7e1265993b01217812c0a61bea4 Author: Michael P <mic...@us...> Date: Mon Aug 1 13:57:39 2011 +0900 Correction for regression test plancache TEMP sequences are now supported. M src/test/regress/expected/plancache_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/plancache_1.out | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-01 04:51:45
|
Project "Postgres-XC". The branch, master has been updated via 5073856871b00199c513ed140b3c35aac88eb0d8 (commit) from 01f9d0376f95f08f352f96f0f1bdda8c56b610a8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h= commit 5073856871b00199c513ed140b3c35aac88eb0d8 Author: Michael P <mic...@us...> Date: Mon Aug 1 13:53:52 2011 +0900 Correction for regression test transactions PREPARE/EXECUTE is supported now. M src/test/regress/expected/transactions_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/transactions_1.out | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |