1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00
Commit Graph

5266 Commits

Author SHA1 Message Date
50b1651df7 Many thanks to Joachim Wieland for a big list of corrections / updates.
Ian Barwick
2004-12-18 04:18:21 +00:00
92c001bbaf Minor copy-editing in tutorial. 2004-12-17 04:50:32 +00:00
480777e56c Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have been
several reports of users being confused when they attempt to use ELSEIF
and run into trouble due to PL/PgSQL's lax parser. The parser will be
improved for 8.1, but we can fix most of the problem by allowing ELSEIF
for now.
2004-12-17 03:51:36 +00:00
dfdae5d63c Hook up the plpython result-object nrows and status methods correctly.
Adjust documentation to match current reality.
2004-12-17 02:14:48 +00:00
8e0598f7b1 Add port report 2004-12-16 11:23:16 +00:00
50f1daeaaa Add French IRC channel. 2004-12-16 01:08:23 +00:00
d78fc95bda Add Spanish IRC channel to FAQ. 2004-12-16 00:01:33 +00:00
e61648d835 Update IRC mention. 2004-12-15 03:11:26 +00:00
70dc2f6abb Add port reports 2004-12-14 10:24:27 +00:00
374abf9178 Add more port reports. 2004-12-14 00:36:12 +00:00
5ec30faee6 Spell checker run 2004-12-13 18:05:10 +00:00
cbc1886b30 Update FAQ.
Euler Taveira de Oliveira
2004-12-13 03:37:09 +00:00
fd536dd257 Added port reports 2004-12-11 20:54:14 +00:00
d89042b443 Patch to the pl/perl documents that clarifies the scope of global data and
gives an example of storing a code reference

by David Fetter
2004-12-11 20:03:37 +00:00
607154df90 Added port reports 2004-12-11 19:31:45 +00:00
f4451a9e59 Added port report 2004-12-11 19:13:32 +00:00
ed244968c0 Added port report 2004-12-11 19:01:46 +00:00
4abfc20f09 Reorder IRC examples. 2004-12-10 18:01:59 +00:00
e514da649e Start filling in the supported platforms list with build farm information. 2004-12-06 23:47:08 +00:00
29a26b25ba Fix several mistaken xreflabel entries, including those spotted by
Michael Fuhr.
2004-12-05 20:05:47 +00:00
510a47a91e Properl format HTML in developer's FAQ. 2004-12-04 04:12:11 +00:00
2254d4ef1b Back out ARRAY() patch. 2004-12-03 18:34:31 +00:00
59ce952a89 Improve description of --disable-rpath workaround for regression test
problems.
2004-12-03 17:46:19 +00:00
c1233c849b >>This patch adds another plpgsql trigger example to the chapter. It uses
>>the emp table again, but shows how to audit changes into another table
>>(emp_audit).

Mark Kirkwood
2004-12-03 17:12:09 +00:00
4aa09c5762 Typo fixes. 2004-12-03 06:30:40 +00:00
e5615c42a7 Fix typo. 2004-12-03 06:18:12 +00:00
b5a6e26f3a Merge pgadmin paragraph. 2004-12-03 06:04:38 +00:00
6b16aaa065 First version of external projects manual section. 2004-12-03 05:50:18 +00:00
e5fddaa819 Remove doc changes that were in process during previous commit. 2004-12-03 01:23:38 +00:00
08e0b34bad Back out fix for Unicode characters above 0x10000 2004-12-03 01:20:33 +00:00
4af2ea329b Add documention on ARRAY() function.
David Fetter
2004-12-02 21:04:47 +00:00
020cf90900 Add mention of using --disable-rpath with regression test. 2004-12-02 20:35:45 +00:00
e9c03c3b1b Disallow the combination VACUUM FULL FREEZE for safety's sake, for the
reasons I outlined in pghackers a few days ago.

Also, undo someone's overly optimistic decision to reduce tuple state
checks from if (...) elog() to Asserts.  If I trusted this code more,
I might think it was a good idea to disable these checks in production
installations.  But I don't.
2004-12-02 19:28:49 +00:00
22c21bab92 Wording improvement. 2004-12-02 17:39:54 +00:00
91cf5ef550 Document that btrim()'s second parameter is optional, and defaults to spaces. 2004-12-02 17:14:54 +00:00
40b6d68951 Update Brazilian FAQ.
Euler Taveira de Oliveira
2004-12-02 15:49:25 +00:00
8408f65252 Rework libpq threaded SIGPIPE handling to avoid interference with
calling applications.  This is done by blocking sigpipe in the libpq
thread and using sigpending/sigwait to possibily discard any sigpipe we
generated.
2004-12-02 15:32:54 +00:00
64b5789497 This is a little patch to correct the documentation on CVS. The URL for
downloading CVS at cyclic.com site is long defunct, and I changed the text
to not overtly recommend CVS 1.10, a now fairly old version.

Jon Jensen
2004-12-02 04:12:12 +00:00
ec2fce1880 Update Japanese FAQ.
Jun Kuwamura
2004-12-02 03:46:47 +00:00
eebece7d0d Update French FAQ.
Guillaume LELARGE
2004-12-01 22:17:16 +00:00
4828445d3c Clarify documentation of age() functions. 2004-12-01 19:32:12 +00:00
5374d097de Change planner to use the current true disk file size as its estimate of
a relation's number of blocks, rather than the possibly-obsolete value
in pg_class.relpages.  Scale the value in pg_class.reltuples correspondingly
to arrive at a hopefully more accurate number of rows.  When pg_class
contains 0/0, estimate a tuple width from the column datatypes and divide
that into current file size to estimate number of rows.  This improved
methodology allows us to jettison the ancient hacks that put bogus default
values into pg_class when a table is first created.  Also, per a suggestion
from Simon, make VACUUM (but not VACUUM FULL or ANALYZE) adjust the value
it puts into pg_class.reltuples to try to represent the mean tuple density
instead of the minimal density that actually prevails just after VACUUM.
These changes alter the plans selected for certain regression tests, so
update the expected files accordingly.  (I removed join_1.out because
it's not clear if it still applies; we can add back any variant versions
as they are shown to be needed.)
2004-12-01 19:00:56 +00:00
7f20a59201 Update with Gavin's additions. 2004-12-01 17:21:58 +00:00
f02a21b19b Update Turkish FAQ.
Devrim GUNDUZ
2004-11-30 19:42:38 +00:00
b2fcef64af Update Turkish FAQ.
Devrim GUNDUZ
2004-11-29 03:04:31 +00:00
86c8cc6d22 Typo fixes.
Euler Taveira de Oliveira
2004-11-29 01:58:10 +00:00
2ba6cbc358 Mega-clarifications from Joachim Wieland. 2004-11-28 04:56:04 +00:00
a420b76ca5 Correctly name the Windows operating systems 2004-11-27 21:56:05 +00:00
49cbef7947 Update of conformance information to SQL:2003
by Troels Arvin, Simon Riggs, Elein Mustain

Make spelling of SQL standard names uniform.
2004-11-27 21:27:08 +00:00
77ab4761ad Add web development faq item. 2004-11-27 06:02:53 +00:00