cd5c7e7cbd
Add:
...
> * Allow psql \pset boolean variables to set to fixed values, rather than toggle
2004-12-19 04:36:27 +00:00
f69cf1fc14
Mention why unixware doesn't handle threading in 8.0.
2004-12-19 04:09:48 +00:00
f167dc8802
Test for POSIX.1c 2-arg sigwait() and fail on single-arg version.
2004-12-19 04:06:23 +00:00
9af9320750
Add Win32 version stamps that increment each day for proper SYSTEM32
...
DLL pginstaller installs.
2004-12-19 02:16:31 +00:00
08690d0688
Allow NetBSD, m64k to compile the ASM spinlock code.
...
R?mi Zara
2004-12-18 22:12:52 +00:00
afc4ffe3c8
Add note warning that OS X updates usually overwrite /etc/rc.
2004-12-18 18:36:33 +00:00
5dac7c73c7
Changes the doc's to reflect what the user will find as default.
...
Robert Treat
2004-12-18 04:21:43 +00:00
50b1651df7
Many thanks to Joachim Wieland for a big list of corrections / updates.
...
Ian Barwick
2004-12-18 04:18:21 +00:00
2f7faa5473
Update from Ian Barwick
2004-12-18 04:13:20 +00:00
d0a6042f9f
Make array_cat more paranoid about checking datatypes in empty arrays.
2004-12-17 20:59:58 +00:00
bd3bc4076e
array_map failed to insert correct result type in an empty array.
...
Per example from Florian Pflug.
2004-12-17 20:58:26 +00:00
92c001bbaf
Minor copy-editing in tutorial.
2004-12-17 04:50:32 +00:00
1ef38f2691
In a PGXS build, expect to find the postgres executable already installed,
...
rather than in $(top_builddir)/src/backend/postgres. Sean Chittenden
2004-12-17 03:52:49 +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
ff5a354ece
Fix is-it-time-for-a-checkpoint logic so that checkpoint_segments can
...
usefully be larger than 255. Per gripe from Simon Riggs.
2004-12-17 00:10:36 +00:00
24658a2d53
Add Win32:
...
> o Disallow encodings like UTF8 which which PostgreSQL supports
> but the operating system does not (already disallowed by
> pginstaller)
2004-12-17 00:04:30 +00:00
ccac38ffb4
Update release changes list to mention pg_config.h.win32.
2004-12-16 22:11:06 +00:00
e757f884bc
Update version for Win32-client include file.
2004-12-16 22:05:07 +00:00
8ec9608326
Cause configure --with-tcl to check for presence of <tcl.h>, as per
...
gripe from John Gray. Also fix thinko in pltcl Makefile: if a special
Tcl include directory is specified, that ought to be searched first.
2004-12-16 20:41:01 +00:00
d0c01f29df
Allow --enable-thread-safety with --disable-shared libraries by passing
...
PTHREAD_LIBS to all libpq-usage builds.
2004-12-16 18:13:07 +00:00
b5498167d7
Allow AIX to use --enable-thread-safety by passing PTHREAD_LIBS to
...
binary compiles, and adjust configure tests for AIX.
2004-12-16 17:48:29 +00:00
cd380b99cd
Translation updates
2004-12-16 11:31:55 +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
dd29fc2f61
Fix another place broken by new List implementation :-(. Per example
...
from goranpop@nspoint.net . I think this escaped notice because in
simple cases the list is NIL on entry.
2004-12-15 21:13:34 +00:00
84dbd5a8f6
Disallow SETOF in the input of parseTypeString(). Formerly it was
...
silently ignored, allowing one to write bizarre things like
DECLARE x setof int;
in plpgsql. This has misled at least one novice into thinking that
plpgsql variables could be sets ...
2004-12-15 20:15:17 +00:00
c3d6c7d8f9
Calculation of keys_are_unique flag was wrong for cases involving
...
redundant cross-datatype comparisons. Per example from Merlin Moncure.
2004-12-15 19:16:39 +00:00
6ad835f55f
New translations
2004-12-15 17:50:20 +00:00
fe4d1df375
Translation updates
2004-12-15 17:39:54 +00:00
b8bbd15892
Translation update
2004-12-15 17:14:11 +00:00
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