From fca9fff41bf2c1d4340404af23491bff65bc2e4b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 21 Mar 2008 13:23:29 +0000 Subject: [PATCH] More README src cleanups. --- src/backend/access/heap/README.HOT | 8 +++----- src/backend/access/nbtree/README | 4 ++-- src/backend/access/transam/README | 4 ++-- src/backend/catalog/README | 4 ++-- src/backend/executor/README | 4 ++-- src/backend/libpq/README.SSL | 5 +++++ src/backend/optimizer/README | 4 ++-- src/backend/optimizer/plan/README | 6 +++--- src/backend/parser/README | 4 ++-- src/backend/port/darwin/README | 4 ++-- src/backend/port/dynloader/README.dlfcn.aix | 5 +++++ src/backend/snowball/README | 4 ++-- src/backend/storage/buffer/README | 4 ++-- src/backend/storage/lmgr/README | 4 ++-- src/backend/storage/smgr/README | 4 ++-- src/backend/utils/mb/README | 4 ++-- src/backend/utils/resowner/README | 4 ++-- src/bin/pg_dump/README | 2 ++ src/bin/pgevent/README | 5 +++++ src/interfaces/ecpg/README.dynSQL | 2 ++ src/interfaces/ecpg/test/connect/README | 2 ++ src/interfaces/libpq/README | 2 ++ src/pl/plperl/README | 2 ++ src/pl/tcl/modules/README | 26 +++++++++++++------------- src/port/README | 5 +++++ src/test/locale/README | 5 ++++- src/test/locale/de_DE.ISO8859-1/README | 2 ++ src/test/locale/gr_GR.ISO8859-7/README | 2 ++ src/test/locale/koi8-to-win1251/README | 2 ++ src/test/mb/README | 2 ++ src/test/thread/README | 5 +++++ src/timezone/README | 5 +++++ src/timezone/tznames/README | 5 +++++ src/tools/backend/README | 2 ++ src/tools/findoidjoins/README | 5 +++-- src/tools/fsync/README | 5 +++++ src/tools/make_diff/README | 7 +++++-- src/tools/msvc/README | 5 +++++ src/tools/pginclude/README | 5 +++++ src/tools/pgindent/README | 5 +++++ src/tutorial/README | 5 +++++ 41 files changed, 137 insertions(+), 52 deletions(-) diff --git a/src/backend/access/heap/README.HOT b/src/backend/access/heap/README.HOT index 82984efc75..d2d1620982 100644 --- a/src/backend/access/heap/README.HOT +++ b/src/backend/access/heap/README.HOT @@ -1,9 +1,7 @@ -$PostgreSQL: pgsql/src/backend/access/heap/README.HOT,v 1.2 2007/09/21 21:25:42 tgl Exp $ +$PostgreSQL: pgsql/src/backend/access/heap/README.HOT,v 1.3 2008/03/21 13:23:27 momjian Exp $ - Heap Only Tuples (HOT) - -Introduction ------------- +Heap Only Tuples (HOT) +====================== The Heap Only Tuple (HOT) feature eliminates redundant index entries and allows the re-use of space taken by DELETEd or obsoleted UPDATEd tuples diff --git a/src/backend/access/nbtree/README b/src/backend/access/nbtree/README index f32174191c..9fe84e320e 100644 --- a/src/backend/access/nbtree/README +++ b/src/backend/access/nbtree/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/access/nbtree/README,v 1.19 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/access/nbtree/README,v 1.20 2008/03/21 13:23:27 momjian Exp $ Btree Indexing --------------- +============== This directory contains a correct implementation of Lehman and Yao's high-concurrency B-tree management algorithm (P. Lehman and S. Yao, diff --git a/src/backend/access/transam/README b/src/backend/access/transam/README index 5439869ee5..2288102d40 100644 --- a/src/backend/access/transam/README +++ b/src/backend/access/transam/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/access/transam/README,v 1.10 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/access/transam/README,v 1.11 2008/03/21 13:23:28 momjian Exp $ The Transaction System ----------------------- +====================== PostgreSQL's transaction system is a three-layer system. The bottom layer implements low-level transactions and subtransactions, on top of which rests diff --git a/src/backend/catalog/README b/src/backend/catalog/README index 9e3a9af47f..7b71cd582d 100644 --- a/src/backend/catalog/README +++ b/src/backend/catalog/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/catalog/README,v 1.12 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/catalog/README,v 1.13 2008/03/21 13:23:28 momjian Exp $ System Catalog --------------- +============== This directory contains .c files that manipulate the system catalogs; src/include/catalog contains the .h files that define the structure diff --git a/src/backend/executor/README b/src/backend/executor/README index 2ebe168b38..7644cc2cc4 100644 --- a/src/backend/executor/README +++ b/src/backend/executor/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/executor/README,v 1.6 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/executor/README,v 1.7 2008/03/21 13:23:28 momjian Exp $ The Postgres Executor ---------------------- +===================== The executor processes a tree of "plan nodes". The plan tree is essentially a demand-pull pipeline of tuple processing operations. Each node, when diff --git a/src/backend/libpq/README.SSL b/src/backend/libpq/README.SSL index b45d53c829..1897ab01ae 100644 --- a/src/backend/libpq/README.SSL +++ b/src/backend/libpq/README.SSL @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/backend/libpq/README.SSL,v 1.6 2008/03/21 13:23:28 momjian Exp $ + +SSL +=== + >From the servers perspective: diff --git a/src/backend/optimizer/README b/src/backend/optimizer/README index 43f99d7fba..ea13aeaa6e 100644 --- a/src/backend/optimizer/README +++ b/src/backend/optimizer/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/optimizer/README,v 1.42 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/optimizer/README,v 1.43 2008/03/21 13:23:28 momjian Exp $ Optimizer ---------- +========= These directories take the Query structure returned by the parser, and generate a plan used by the executor. The /plan directory generates the diff --git a/src/backend/optimizer/plan/README b/src/backend/optimizer/plan/README index 10c32b6460..c14cc0a653 100644 --- a/src/backend/optimizer/plan/README +++ b/src/backend/optimizer/plan/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/optimizer/plan/README,v 1.2 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/optimizer/plan/README,v 1.3 2008/03/21 13:23:28 momjian Exp $ Subselects ----------- +========== Vadim B. Mikheev @@ -10,7 +10,7 @@ From owner-pgsql-hackers@hub.org Fri Feb 13 09:01:19 1998 Received: from renoir.op.net (root@renoir.op.net [209.152.193.4]) by candle.pha.pa.us (8.8.5/8.8.5) with ESMTP id JAA11576 for ; Fri, 13 Feb 1998 09:01:17 -0500 (EST) -Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.2 $) with ESMTP id IAA09761 for ; Fri, 13 Feb 1998 08:41:22 -0500 (EST) +Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id IAA09761 for ; Fri, 13 Feb 1998 08:41:22 -0500 (EST) Received: from localhost (majordom@localhost) by hub.org (8.8.8/8.7.5) with SMTP id IAA08135; Fri, 13 Feb 1998 08:40:17 -0500 (EST) Received: by hub.org (TLB v0.10a (1.23 tibbs 1997/01/09 00:29:32)); Fri, 13 Feb 1998 08:38:42 -0500 (EST) Received: (from majordom@localhost) by hub.org (8.8.8/8.7.5) id IAA06646 for pgsql-hackers-outgoing; Fri, 13 Feb 1998 08:38:35 -0500 (EST) diff --git a/src/backend/parser/README b/src/backend/parser/README index bc48a457e3..f8ca493c13 100644 --- a/src/backend/parser/README +++ b/src/backend/parser/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/parser/README,v 1.6 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/parser/README,v 1.7 2008/03/21 13:23:28 momjian Exp $ Parser ------- +====== This directory does more than tokenize and parse SQL queries. It also creates Query structures for the various complex queries that are passed diff --git a/src/backend/port/darwin/README b/src/backend/port/darwin/README index fcee2b28c4..a63f4b7ddb 100644 --- a/src/backend/port/darwin/README +++ b/src/backend/port/darwin/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/port/darwin/README,v 1.4 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/port/darwin/README,v 1.5 2008/03/21 13:23:28 momjian Exp $ Darwin ------- +====== The file system.c included herein is taken directly from Apple's Darwin open-source CVS archives, and is redistributed under the BSD copyright diff --git a/src/backend/port/dynloader/README.dlfcn.aix b/src/backend/port/dynloader/README.dlfcn.aix index e7519086d1..4ca0c266ac 100644 --- a/src/backend/port/dynloader/README.dlfcn.aix +++ b/src/backend/port/dynloader/README.dlfcn.aix @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/backend/port/dynloader/README.dlfcn.aix,v 1.3 2008/03/21 13:23:28 momjian Exp $ + +dynaloader +========== + Copyright (c) 1992,1993,1995, Jens-Uwe Mager, Helios Software GmbH Not derived from licensed software. diff --git a/src/backend/snowball/README b/src/backend/snowball/README index 3a9f18f9cd..bb78dde23f 100644 --- a/src/backend/snowball/README +++ b/src/backend/snowball/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/snowball/README,v 1.2 2008/03/20 17:55:14 momjian Exp $ +$PostgreSQL: pgsql/src/backend/snowball/README,v 1.3 2008/03/21 13:23:28 momjian Exp $ Snowball-Based Stemming ------------------------ +======================= This module uses the word stemming code developed by the Snowball project, http://snowball.tartarus.org/ diff --git a/src/backend/storage/buffer/README b/src/backend/storage/buffer/README index 2f4741f870..057f817b7e 100644 --- a/src/backend/storage/buffer/README +++ b/src/backend/storage/buffer/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/storage/buffer/README,v 1.13 2008/03/20 17:55:15 momjian Exp $ +$PostgreSQL: pgsql/src/backend/storage/buffer/README,v 1.14 2008/03/21 13:23:28 momjian Exp $ Notes About Shared Buffer Access Rules --------------------------------------- +====================================== There are two separate access control mechanisms for shared disk buffers: reference counts (a/k/a pin counts) and buffer content locks. (Actually, diff --git a/src/backend/storage/lmgr/README b/src/backend/storage/lmgr/README index b93452d025..db9db94f01 100644 --- a/src/backend/storage/lmgr/README +++ b/src/backend/storage/lmgr/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/storage/lmgr/README,v 1.23 2008/03/20 17:55:15 momjian Exp $ +$PostgreSQL: pgsql/src/backend/storage/lmgr/README,v 1.24 2008/03/21 13:23:28 momjian Exp $ Locking Overview ----------------- +================ Postgres uses three types of interprocess locks: diff --git a/src/backend/storage/smgr/README b/src/backend/storage/smgr/README index 493d53da90..5d79ef5416 100644 --- a/src/backend/storage/smgr/README +++ b/src/backend/storage/smgr/README @@ -1,7 +1,7 @@ -# $PostgreSQL: pgsql/src/backend/storage/smgr/README,v 1.4 2008/03/20 17:55:15 momjian Exp $ +$PostgreSQL: pgsql/src/backend/storage/smgr/README,v 1.5 2008/03/21 13:23:28 momjian Exp $ Storage Manager ---------------- +=============== In the original Berkeley Postgres system, there were several storage managers, of which only the "magnetic disk" manager remains. (At Berkeley there were diff --git a/src/backend/utils/mb/README b/src/backend/utils/mb/README index 8afb41bfc7..0826ec9ef0 100644 --- a/src/backend/utils/mb/README +++ b/src/backend/utils/mb/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/utils/mb/README,v 1.6 2008/03/20 17:55:15 momjian Exp $ +$PostgreSQL: pgsql/src/backend/utils/mb/README,v 1.7 2008/03/21 13:23:28 momjian Exp $ Encodings ---------- +========= encnames.c: public functions for both the backend and the frontend. conv.c: static functions and a public table for code conversion diff --git a/src/backend/utils/resowner/README b/src/backend/utils/resowner/README index fd4f279ba4..2908af2fa9 100644 --- a/src/backend/utils/resowner/README +++ b/src/backend/utils/resowner/README @@ -1,7 +1,7 @@ -$PostgreSQL: pgsql/src/backend/utils/resowner/README,v 1.6 2008/03/20 17:55:15 momjian Exp $ +$PostgreSQL: pgsql/src/backend/utils/resowner/README,v 1.7 2008/03/21 13:23:28 momjian Exp $ Notes About Resource Owners ---------------------------- +=========================== ResourceOwner objects are a concept invented to simplify management of query-related resources, such as buffer pins and table locks. These diff --git a/src/bin/pg_dump/README b/src/bin/pg_dump/README index 9ed81b00aa..1b65b45828 100644 --- a/src/bin/pg_dump/README +++ b/src/bin/pg_dump/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/bin/pg_dump/README,v 1.7 2008/03/21 13:23:28 momjian Exp $ + Notes on pg_dump ================ diff --git a/src/bin/pgevent/README b/src/bin/pgevent/README index f6a01a619d..2d0f85f777 100644 --- a/src/bin/pgevent/README +++ b/src/bin/pgevent/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/bin/pgevent/README,v 1.3 2008/03/21 13:23:28 momjian Exp $ + +pgevent +======= + MSG000001.bin is a binary file, result of Microsoft MC compiler. MC compiler can be downloaded for free with MS Core SDK but it is not included with MSYS tools and I didn't find an alternative way to compile MC file. diff --git a/src/interfaces/ecpg/README.dynSQL b/src/interfaces/ecpg/README.dynSQL index 4c606ca398..5c1c54cfbd 100644 --- a/src/interfaces/ecpg/README.dynSQL +++ b/src/interfaces/ecpg/README.dynSQL @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/interfaces/ecpg/README.dynSQL,v 1.3 2008/03/21 13:23:28 momjian Exp $ + descriptor statements have the following shortcomings - input descriptors (USING DESCRIPTOR ) are not supported diff --git a/src/interfaces/ecpg/test/connect/README b/src/interfaces/ecpg/test/connect/README index d2cb50440a..b632788d30 100644 --- a/src/interfaces/ecpg/test/connect/README +++ b/src/interfaces/ecpg/test/connect/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/interfaces/ecpg/test/connect/README,v 1.2 2008/03/21 13:23:28 momjian Exp $ + Programs in this directory test all sorts of connections. All other programs just use one standard connection method. diff --git a/src/interfaces/libpq/README b/src/interfaces/libpq/README index e581950bf2..4bb2ed88de 100644 --- a/src/interfaces/libpq/README +++ b/src/interfaces/libpq/README @@ -1 +1,3 @@ +$PostgreSQL: pgsql/src/interfaces/libpq/README,v 1.2 2008/03/21 13:23:29 momjian Exp $ + This directory contains the C version of Libpq, the POSTGRES frontend library. diff --git a/src/pl/plperl/README b/src/pl/plperl/README index 317b882c8b..d3ccd14240 100644 --- a/src/pl/plperl/README +++ b/src/pl/plperl/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/pl/plperl/README,v 1.4 2008/03/21 13:23:29 momjian Exp $ + PL/Perl allows you to write PostgreSQL functions and procedures in Perl. To include PL/Perl in the build use './configure --with-perl'. To build from this directory use 'gmake all; gmake install'. libperl diff --git a/src/pl/tcl/modules/README b/src/pl/tcl/modules/README index 2905cfe8cb..58529d17e1 100644 --- a/src/pl/tcl/modules/README +++ b/src/pl/tcl/modules/README @@ -1,19 +1,19 @@ +$PostgreSQL: pgsql/src/pl/tcl/modules/README,v 1.3 2008/03/21 13:23:29 momjian Exp $ - Regular Tcl scripts of any size (over 8K :-) can be loaded into - the table pltcl_modules using the pltcl_loadmod script. The script - checks the modules that the procedure names don't overwrite - existing ones before doing anything. They also check for global - variables created at load time. +Regular Tcl scripts of any size (over 8K :-) can be loaded into +the table pltcl_modules using the pltcl_loadmod script. The script +checks the modules that the procedure names don't overwrite +existing ones before doing anything. They also check for global +variables created at load time. - All procedures defined in the module files are automatically - added to the table pltcl_modfuncs. This table is used by the - unknown procedure to determine if an unknown command can be - loaded by sourcing a module. In that case the unknown procedure - will silently source in the module and reexecute the original - command that invoked unknown. - - I know, this readme should be more explanatory - but time. +All procedures defined in the module files are automatically +added to the table pltcl_modfuncs. This table is used by the +unknown procedure to determine if an unknown command can be +loaded by sourcing a module. In that case the unknown procedure +will silently source in the module and reexecute the original +command that invoked unknown. +I know, this readme should be more explanatory - but time. Jan diff --git a/src/port/README b/src/port/README index 6a8cf5fd67..ce2ec3bb07 100644 --- a/src/port/README +++ b/src/port/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/port/README,v 1.4 2008/03/21 13:23:29 momjian Exp $ + +libpgport +========= + libpgport must have special behavior. It supplies functions to both libraries and applications. However, there are two complexities: diff --git a/src/test/locale/README b/src/test/locale/README index 962fccb89c..f3eeba36fd 100644 --- a/src/test/locale/README +++ b/src/test/locale/README @@ -1,4 +1,7 @@ -$PostgreSQL: pgsql/src/test/locale/README,v 1.5 2003/11/29 19:52:14 pgsql Exp $ +$PostgreSQL: pgsql/src/test/locale/README,v 1.6 2008/03/21 13:23:29 momjian Exp $ + +Locales +======= This directory contains a set of tests for locales. I provided one C program test-ctype.c to test CTYPE support in libc and the installed diff --git a/src/test/locale/de_DE.ISO8859-1/README b/src/test/locale/de_DE.ISO8859-1/README index 0ef1c8c5fe..76d9fd16bc 100644 --- a/src/test/locale/de_DE.ISO8859-1/README +++ b/src/test/locale/de_DE.ISO8859-1/README @@ -1,2 +1,4 @@ +$PostgreSQL: pgsql/src/test/locale/de_DE.ISO8859-1/README,v 1.2 2008/03/21 13:23:29 momjian Exp $ + de_DE.ISO-8859-1 (German) locale test. Created by Armin Diehl diff --git a/src/test/locale/gr_GR.ISO8859-7/README b/src/test/locale/gr_GR.ISO8859-7/README index 62023d0c8e..04a5202254 100644 --- a/src/test/locale/gr_GR.ISO8859-7/README +++ b/src/test/locale/gr_GR.ISO8859-7/README @@ -1,2 +1,4 @@ +$PostgreSQL: pgsql/src/test/locale/gr_GR.ISO8859-7/README,v 1.2 2008/03/21 13:23:29 momjian Exp $ + gr_GR.ISO8859-7 (Greek) locale test. Created by Angelos Karageorgiou diff --git a/src/test/locale/koi8-to-win1251/README b/src/test/locale/koi8-to-win1251/README index 1ad3bde81d..35d64ab2c6 100644 --- a/src/test/locale/koi8-to-win1251/README +++ b/src/test/locale/koi8-to-win1251/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/test/locale/koi8-to-win1251/README,v 1.2 2008/03/21 13:23:29 momjian Exp $ + koi8-to-win1251 test. The database should be created in koi8 (createdb -E koi8), test uses koi8-to-win1251 converting feature. Created by Oleg Broytmann . Code for encodings diff --git a/src/test/mb/README b/src/test/mb/README index beb580a0d8..c11452f8a9 100644 --- a/src/test/mb/README +++ b/src/test/mb/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/test/mb/README,v 1.3 2008/03/21 13:23:29 momjian Exp $ + README for multibyte regression test 1998/7/22 Tatsuo Ishii diff --git a/src/test/thread/README b/src/test/thread/README index 107699610e..98f1f54f09 100644 --- a/src/test/thread/README +++ b/src/test/thread/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/test/thread/README,v 1.2 2008/03/21 13:23:29 momjian Exp $ + +Threading +========= + This program should be run by developers wishing to enable threading on new platforms. diff --git a/src/timezone/README b/src/timezone/README index 96452a9b89..db39d5347c 100644 --- a/src/timezone/README +++ b/src/timezone/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/timezone/README,v 1.7 2008/03/21 13:23:29 momjian Exp $ + +Timezone +======== + This is a PostgreSQL adapted version of the timezone library from: ftp://elsie.nci.nih.gov/pub/tzcode*.tar.gz diff --git a/src/timezone/tznames/README b/src/timezone/tznames/README index 3b1bdcce50..488fb67082 100644 --- a/src/timezone/tznames/README +++ b/src/timezone/tznames/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/timezone/tznames/README,v 1.3 2008/03/21 13:23:29 momjian Exp $ + +tznames +======= + This directory contains files with timezone sets for PostgreSQL. The problem is that time zone abbreviations are not unique throughout the world and you might find out that a time zone abbreviation in the `Default' set collides diff --git a/src/tools/backend/README b/src/tools/backend/README index 601c66cc4b..bde3a3e4c0 100644 --- a/src/tools/backend/README +++ b/src/tools/backend/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/tools/backend/README,v 1.2 2008/03/21 13:23:29 momjian Exp $ + Just point your browser at the index.html file, and click on the flowchart to see the description and source code. diff --git a/src/tools/findoidjoins/README b/src/tools/findoidjoins/README index be4613eaf3..8feeb69096 100644 --- a/src/tools/findoidjoins/README +++ b/src/tools/findoidjoins/README @@ -1,6 +1,7 @@ -$PostgreSQL: pgsql/src/tools/findoidjoins/README,v 1.4 2007/05/11 17:57:14 tgl Exp $ +$PostgreSQL: pgsql/src/tools/findoidjoins/README,v 1.5 2008/03/21 13:23:29 momjian Exp $ - findoidjoins +findoidjoins +============ This program scans a database and prints oid fields (also reg* fields) and the tables they join to. We don't really recommend running it on diff --git a/src/tools/fsync/README b/src/tools/fsync/README index f93f649b0e..d33e390f49 100644 --- a/src/tools/fsync/README +++ b/src/tools/fsync/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/tools/fsync/README,v 1.4 2008/03/21 13:23:29 momjian Exp $ + +fsync +===== + This program tests fsync. The tests are described as part of the program output. Usage: test_fsync [-f filename] [loops] diff --git a/src/tools/make_diff/README b/src/tools/make_diff/README index 2d66b36ddb..9e333b6164 100644 --- a/src/tools/make_diff/README +++ b/src/tools/make_diff/README @@ -1,6 +1,7 @@ -$PostgreSQL: pgsql/src/tools/make_diff/README,v 1.3 2006/03/11 04:38:42 momjian Exp $ +$PostgreSQL: pgsql/src/tools/make_diff/README,v 1.4 2008/03/21 13:23:29 momjian Exp $ -Bruce Momjian +scripts +======= Here are some of the scripts I use to make development easier. @@ -35,3 +36,5 @@ the files I used with cporig. Finally, I remove my old copies with 'rmorig'. +Bruce Momjian + diff --git a/src/tools/msvc/README b/src/tools/msvc/README index 17a480047c..603a6e0be2 100644 --- a/src/tools/msvc/README +++ b/src/tools/msvc/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/tools/msvc/README,v 1.7 2008/03/21 13:23:29 momjian Exp $ + +MSVC build +========== + This directory contains the tools required to build PostgreSQL using Microsoft Visual Studio 2005. This builds the whole backend, not just the libpq frontend library. For more information, see the documentation diff --git a/src/tools/pginclude/README b/src/tools/pginclude/README index dc92735d5f..dbe0a6ab0c 100644 --- a/src/tools/pginclude/README +++ b/src/tools/pginclude/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/tools/pginclude/README,v 1.10 2008/03/21 13:23:29 momjian Exp $ + +pginclude +========= + These utilities help clean up #include file usage. They should be run in this order so that the include files have the proper includes before the C files are tested. diff --git a/src/tools/pgindent/README b/src/tools/pgindent/README index 58a0ca2fd9..decce29929 100644 --- a/src/tools/pgindent/README +++ b/src/tools/pgindent/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/tools/pgindent/README,v 1.29 2008/03/21 13:23:29 momjian Exp $ + +pgindent +======== + This can format all PostgreSQL *.c and *.h files, but excludes *.y, and *.l files. diff --git a/src/tutorial/README b/src/tutorial/README index 6d05cb578f..9748203fc5 100644 --- a/src/tutorial/README +++ b/src/tutorial/README @@ -1,3 +1,8 @@ +$PostgreSQL: pgsql/src/tutorial/README,v 1.4 2008/03/21 13:23:29 momjian Exp $ + +tutorial +======== + This directory contains SQL tutorial scripts. To look at them, first do a % make to compile all the scripts and C files for the user-defined functions -- 2.11.0