1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-24 14:22:24 +03:00
Commit Graph

19224 Commits

Author SHA1 Message Date
e61648d835 Update IRC mention. 2004-12-15 03:11:26 +00:00
f6a1a8e254 In 'make installcheck' for contrib/, insert 'sleep 1' between subdirectory
checks, to ensure the previous test backend has time to quit out of the
regression database.  Also, allow all the checks to be run even if one
of them fails.  Per suggestions from Andrew Dunstan to improve the
usefulness of buildfarm testing.
2004-12-14 22:50:23 +00:00
86a069bbed Cope with circularities involving a view's ON SELECT rule. I originally
thought there couldn't be any, but the folly of this was exposed by an
example from andrew@supernews.com 5-Dec-2004.  The patch applies the
identical logic already used for table constraints and defaults to ON
SELECT rules, so I have reasonable confidence in it even though it might
look like complicated logic.
2004-12-14 22:16:32 +00:00
94e467061e Fix pg_dump to ensure that a comment on a table CHECK constraint cannot
be emitted too soon.  The previous code got this right in the case where
the CHECK was emitted as a separate ALTER TABLE command, but not in the
case where the CHECK is emitted right in CREATE TABLE.  Per report from
Slawomir Sudnik.

Note: this code is pretty ugly; it'd perhaps be better to treat comments
as independently sortable dump objects.  That'd be much too invasive a
change for RC time though.
2004-12-14 21:35:20 +00:00
af80de1f01 Update aix cc_r wording. 2004-12-14 14:53:53 +00:00
0f4b3f2215 Mention aix cc_r is not supported, and why 2004-12-14 12:58:29 +00:00
ec4aa14b68 Fix typo 2004-12-14 11:11:20 +00:00
70dc2f6abb Add port reports 2004-12-14 10:24:27 +00:00
75e39c441e Prevent pg_resetxlog from being run as root. If this is allowed, some
root-owned files will be written to the data directory, leaving it in an
unusable state.
2004-12-14 01:59:41 +00:00
374abf9178 Add more port reports. 2004-12-14 00:36:12 +00:00
93c4a14e5c New translation 2004-12-13 22:54:20 +00:00
6ccb04f341 Translation updates 2004-12-13 21:49:10 +00:00
3ff0418293 Remove:
< 	o Allow the shared memory address to be configured via GUC
2004-12-13 18:40:30 +00:00
5ec30faee6 Spell checker run 2004-12-13 18:05:10 +00:00
cc4f22c167 Done:
< 	o Remove per-backend parameter file and move into shared memory

Add for Win32:
> 	o Allow the shared memory address to be configured via GUC
2004-12-13 18:00:51 +00:00
36af887d6b Clearify which version numbers are bumped for major and minor releases. 2004-12-13 17:28:54 +00:00
5483936ed3 New translations 2004-12-13 16:30:53 +00:00
965dd791f4 Translation updates 2004-12-13 16:28:23 +00:00
e13c5cd33b Add:
>
> * Allow the size of the buffer cache used by temporary objects to be
>   specified as a GUC variable
>
>   Larger local buffer cache sizes requires more efficient handling of
>   local cache lookups.
2004-12-13 14:21:32 +00:00
cbc1886b30 Update FAQ.
Euler Taveira de Oliveira
2004-12-13 03:37:09 +00:00
d4b49b4bd4 Avoid generating excess (and illegal) parentheses around an aliased JOIN
in prettyprint mode.  Andreas Pflug
2004-12-13 00:33:06 +00:00
cda3e5836e Add regression tests for the fix committed by Tom for casting between
the row types of parent/child tables.
2004-12-12 22:49:50 +00:00
c604ed56e3 PREPARE and EXPLAIN need to copy the source query just like we recently
had to do in DECLARE CURSOR.  AFAICS these are all the places affected.
PREPARE case per example from Michael Fuhr, EXPLAIN case located by
grepping for planner calls ...
2004-12-12 20:17:06 +00:00
f9a6ba184a Add missing newlines at end of error messages. 2004-12-12 18:26:29 +00:00
373825c9cd Translation updates 2004-12-12 18:09:18 +00:00
cf5539112c Fix problems with certain shells (e.g., FreeBSD, Cygwin) clearing the
exit status in multiline traps.
2004-12-12 15:34:15 +00:00
984791e0e1 Upgrade formrdesc() so that it can correctly initialize the tupledesc
(rd_att) field of a nailed-in-cache relcache entry.  This fixes the bug
reported by Alvaro 8-Dec-2004; I believe it probably also explains
Grant Finnemore's report of 10-Sep-2004.

In an unrelated change in the same file, put back 7.4's response to
failure to rename() the relcache init file, ie, unlink the useless
temp file.  I did not put back the warning message, since there might
actually be some reason not to have that.
2004-12-12 05:07:50 +00:00
12b1b5d837 Instead of supposing (wrongly, in the general case) that the rowtype
of an inheritance child table is binary-compatible with the rowtype of
its parent, invent an expression node type that does the conversion
correctly.  Fixes the new bug exhibited by Kris Shannon as well as a
lot of old bugs that would only show up when using multiple inheritance
or after altering the parent table.
2004-12-11 23:26:51 +00:00
fd536dd257 Added port reports 2004-12-11 20:54:14 +00:00
b89df8fe60 Translation updates 2004-12-11 20:19:24 +00:00
a31ec86ebe Translation updates 2004-12-11 20:10: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
e82cd783a1 Translation updates 2004-12-11 19:56:07 +00:00
4de679c710 Translation updates 2004-12-11 19:45:34 +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
10e960fb39 Translation updates 2004-12-11 19:09:08 +00:00
022a00b5f3 Translation updates 2004-12-11 19:03:49 +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
d5df606cb2 ActiveSnapshot must be set to something valid while running deferred
triggers during COMMIT.  Per trouble report from Frank van Vugt.
2004-12-06 23:57:17 +00:00
e514da649e Start filling in the supported platforms list with build farm information. 2004-12-06 23:47:08 +00:00
8efc721d52 Translation updates 2004-12-06 22:10:42 +00:00
ec7806db2c Fixed bug in parsing of typedef'ed array sizes.
Synced parser.
2004-12-06 20:35:35 +00:00
b3f3092cad Fix off-by-1 bug in pg_ctl in -D handling, per report from pjmodos@parba.cz 2004-12-06 01:09:20 +00:00
29a26b25ba Fix several mistaken xreflabel entries, including those spotted by
Michael Fuhr.
2004-12-05 20:05:47 +00:00
e09567d850 Back out addition of Win1252 encoding. 2004-12-04 18:19:33 +00:00
510a47a91e Properl format HTML in developer's FAQ. 2004-12-04 04:12:11 +00:00
f51964fa76 tag configure for rc1 .. REL8_0_0RC1 2004-12-03 22:24:53 +00:00
59b3b8014d As long as we're forcing an ORDER BY in these four join queries, we had
better make sure the sort order is totally specified; else we get burnt
by platform-specific behavior of qsort() with equal keys.  Per buildfarm
results.
2004-12-03 22:19:28 +00:00