Tom Lane
1553be4a0b
Prevent evaluation of backticks while discarding unwanted arguments
...
after an unknown or failed psql backslash command, and also while
discarding "extra" arguments of a putatively valid backslash command.
In the case of an unknown/failed command, make sure we discard the
whole rest of the line, rather than trying to resume at the next
backslash. Per discussion with Thomer Gil.
21 years ago
Bruce Momjian
cd5c7e7cbd
Add:
...
> * Allow psql \pset boolean variables to set to fixed values, rather than toggle
21 years ago
Bruce Momjian
f69cf1fc14
Mention why unixware doesn't handle threading in 8.0.
21 years ago
Bruce Momjian
f167dc8802
Test for POSIX.1c 2-arg sigwait() and fail on single-arg version.
21 years ago
Bruce Momjian
9af9320750
Add Win32 version stamps that increment each day for proper SYSTEM32
...
DLL pginstaller installs.
21 years ago
Bruce Momjian
08690d0688
Allow NetBSD, m64k to compile the ASM spinlock code.
...
R?mi Zara
21 years ago
Tom Lane
afc4ffe3c8
Add note warning that OS X updates usually overwrite /etc/rc.
21 years ago
Bruce Momjian
5dac7c73c7
Changes the doc's to reflect what the user will find as default.
...
Robert Treat
21 years ago
Bruce Momjian
50b1651df7
Many thanks to Joachim Wieland for a big list of corrections / updates.
...
Ian Barwick
21 years ago
Bruce Momjian
2f7faa5473
Update from Ian Barwick
21 years ago
Tom Lane
d0a6042f9f
Make array_cat more paranoid about checking datatypes in empty arrays.
21 years ago
Tom Lane
bd3bc4076e
array_map failed to insert correct result type in an empty array.
...
Per example from Florian Pflug.
21 years ago
Tom Lane
92c001bbaf
Minor copy-editing in tutorial.
21 years ago
Tom Lane
1ef38f2691
In a PGXS build, expect to find the postgres executable already installed,
...
rather than in $(top_builddir)/src/backend/postgres. Sean Chittenden
21 years ago
Neil Conway
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.
21 years ago
Tom Lane
dfdae5d63c
Hook up the plpython result-object nrows and status methods correctly.
...
Adjust documentation to match current reality.
21 years ago
Tom Lane
ff5a354ece
Fix is-it-time-for-a-checkpoint logic so that checkpoint_segments can
...
usefully be larger than 255. Per gripe from Simon Riggs.
21 years ago
Bruce Momjian
24658a2d53
Add Win32:
...
> o Disallow encodings like UTF8 which which PostgreSQL supports
> but the operating system does not (already disallowed by
> pginstaller)
21 years ago
Bruce Momjian
ccac38ffb4
Update release changes list to mention pg_config.h.win32.
21 years ago
Bruce Momjian
e757f884bc
Update version for Win32-client include file.
21 years ago
Tom Lane
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.
21 years ago
Bruce Momjian
d0c01f29df
Allow --enable-thread-safety with --disable-shared libraries by passing
...
PTHREAD_LIBS to all libpq-usage builds.
21 years ago
Bruce Momjian
b5498167d7
Allow AIX to use --enable-thread-safety by passing PTHREAD_LIBS to
...
binary compiles, and adjust configure tests for AIX.
21 years ago
Peter Eisentraut
cd380b99cd
Translation updates
21 years ago
Peter Eisentraut
8e0598f7b1
Add port report
21 years ago
Bruce Momjian
50f1daeaaa
Add French IRC channel.
21 years ago
Bruce Momjian
d78fc95bda
Add Spanish IRC channel to FAQ.
21 years ago
Tom Lane
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.
21 years ago
Tom Lane
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 ...
21 years ago
Tom Lane
c3d6c7d8f9
Calculation of keys_are_unique flag was wrong for cases involving
...
redundant cross-datatype comparisons. Per example from Merlin Moncure.
21 years ago
Peter Eisentraut
6ad835f55f
New translations
21 years ago
Peter Eisentraut
fe4d1df375
Translation updates
21 years ago
Peter Eisentraut
b8bbd15892
Translation update
21 years ago
Bruce Momjian
e61648d835
Update IRC mention.
21 years ago
Tom Lane
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.
21 years ago
Tom Lane
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.
21 years ago
Tom Lane
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.
21 years ago
Bruce Momjian
af80de1f01
Update aix cc_r wording.
21 years ago
Bruce Momjian
0f4b3f2215
Mention aix cc_r is not supported, and why
21 years ago
Peter Eisentraut
ec4aa14b68
Fix typo
21 years ago
Peter Eisentraut
70dc2f6abb
Add port reports
21 years ago
Neil Conway
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.
21 years ago
Peter Eisentraut
374abf9178
Add more port reports.
21 years ago
Peter Eisentraut
93c4a14e5c
New translation
21 years ago
Peter Eisentraut
6ccb04f341
Translation updates
21 years ago
Bruce Momjian
3ff0418293
Remove:
...
< o Allow the shared memory address to be configured via GUC
21 years ago
Peter Eisentraut
5ec30faee6
Spell checker run
21 years ago
Bruce Momjian
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
21 years ago
Bruce Momjian
36af887d6b
Clearify which version numbers are bumped for major and minor releases.
21 years ago
Peter Eisentraut
5483936ed3
New translations
21 years ago