Peter Eisentraut
66d8165a8b
Translation updates
2005-01-13 21:24:40 +00:00
Peter Eisentraut
145cc515f0
Update supported platforms list.
2005-01-13 21:13:33 +00:00
Peter Eisentraut
f680aaeafa
Translation updates
2005-01-13 19:06:37 +00:00
Tom Lane
3810c23fe4
Adjust src/tutorial Makefile so that it can use pgxs. This allows the
...
tutorial to be used without necessarily having a configured source tree.
2005-01-13 18:23:22 +00:00
Tom Lane
c06b31dc31
get_names_for_var didn't do recursion for unnamed JOIN vars quite right;
...
got it wrong when the JOIN was in an outer query level. Per example from
Laurie Burrow. Also fix same issue in markTargetListOrigin. I think the
latter is only a latent bug since we currently don't apply markTargetListOrigin
except at the outer level ... but should do it right anyway.
2005-01-13 17:19:10 +00:00
Bruce Momjian
c2eef62c66
Update of Japanese FAQ.
...
Jun Kuwamura
2005-01-13 03:08:14 +00:00
Tom Lane
cbd8913245
Remove unportable assumption that it's okay to use the target buffer
...
of an sprintf() as a source string. Demonstrably does not work with
recent gcc and/or glibc on some platforms.
2005-01-13 01:40:13 +00:00
Tom Lane
40f32f351a
Add conditional inclusion of <com_err.h> to support old 'heimdal'
...
version of Kerberos. Per report from Reinhard Max.
2005-01-12 21:37:54 +00:00
Tom Lane
2ec1aa4cb8
Re-allow an untyped literal as the test expression of a CASE, ie
...
CASE 'a' WHEN 'a' THEN 1 ELSE 2 END. This worked in 7.4 and before
but had been broken due to premature freezing of the type of the test
expression. Per gripe from GÄbor SzÃcs.
2005-01-12 17:32:36 +00:00
Tom Lane
8251e0b2fb
Increase MAXLISTEN to a more generous value, and add an error message
...
telling when it has been exceeded. Per trouble report from
Jean-GÅrard Pailloncy.
2005-01-12 16:38:17 +00:00
Tom Lane
6bb51348b0
Ensure that the test postmaster started by 'make check' listens to as
...
few 'listen_addresses' as possible --- on most systems, none at all,
just the Unix socket. This avoids spurious check failures due to bogus
DNS setups, and is probably a good idea from a security standpoint anyway.
Per trouble report from Jean-GÅrard Pailloncy.
2005-01-12 16:19:51 +00:00
Tom Lane
d3d00715e2
interval_out failed to mention 'ago' for negative intervals in SQL and
...
GERMAN datestyles. Ancient bug reported by Terry Lee Tucker.
2005-01-11 18:33:46 +00:00
Tom Lane
5f0a468454
Fix tracking of dump-order dependencies for stand-alone composite types.
...
Per report from Robert Koepferl.
2005-01-11 17:55:25 +00:00
Teodor Sigaev
5b354d2c7e
Fixes:
...
1 Report error message instead of do nothing in case of error in regex
2 Malloced storage for mask, find and repl part of Affix. This parts may be
large enough in real life (for example in czech, thanks to moje <moje@kalhotky.net>)
2005-01-11 16:07:55 +00:00
Tom Lane
e24801654a
plperl was not being quite paranoid enough about detecting 'undef' values
...
returned by Perl. Per report from Nicolas Addington.
2005-01-11 06:08:45 +00:00
PostgreSQL Daemon
6ff408707e
up release to rc5
2005-01-11 05:29:21 +00:00
Tom Lane
38498a28df
Clean up pg_dump's handling of ownership for indexes (including
...
pkey/unique constraint indexes) and schemas. Per report from
Michael Fuhr.
2005-01-11 05:14:13 +00:00
Tom Lane
fc299179df
Separate the functions of relcache entry flush and smgr cache entry flush
...
so that we can get the size of a shared inval message back down to what it
was in 7.4 (and simplify the logic too). Phase 2 of fixing the
'SMgrRelation hashtable corrupted' problem.
2005-01-10 21:57:19 +00:00
Tom Lane
0ce4d56924
Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. This
...
is the minimum required fix. I want to look next at taking advantage of
it by simplifying the message semantics in the shared inval message queue,
but that part can be held over for 8.1 if it turns out too ugly.
2005-01-10 20:02:24 +00:00
Michael Meskes
cc7cd8774a
Fixed segfault in adjust_informix due to missing varchar type.
2005-01-10 12:58:30 +00:00
Peter Eisentraut
89b5cbe928
Update supported platforms list.
2005-01-10 09:01:04 +00:00
Peter Eisentraut
35fde297c0
Small polishing of bug reporting template
2005-01-10 08:21:43 +00:00
Peter Eisentraut
c2719ae503
Translation updates
2005-01-10 08:14:35 +00:00
Tom Lane
a54ea1f75e
Comment out check for substitution of private key file on Windows,
...
since st_ino can't be trusted on that platform. Per report from T.J.
2005-01-10 00:37:12 +00:00
Tom Lane
8e4f4078d8
Un-break MSVC build, per Andrew Dunstan.
2005-01-10 00:19:51 +00:00
Tom Lane
ab3bb9cf78
Add some real documentation about TOAST (finally). Combine this with
...
the old 'page' chapter and the recently added 'filelayout' chapter to
make a coherent chapter about PostgreSQL's physical storage layout.
2005-01-10 00:04:43 +00:00
Tom Lane
521e8888e9
Undo an unadvertised change in the API of pg_atoi. In all previous
...
releases, a nonzero 'c' argument meant that the input string could be
terminated by either that character or \0. Recent refactoring broke
that, causing the thing to scan for 'c' only. This went undetected
because no part of the main code actually passes nonzero 'c'. However
it broke tsearch2 and possibly other user-written code that assumed
the old definition. Per report from Tom Hebbron.
2005-01-09 21:03:19 +00:00
Tom Lane
0471cd5f62
Clarify description of greedy and non-greedy POSIX regular expressions,
...
per discussion in Nov 2004 with Ken Tanzer.
2005-01-09 20:08:50 +00:00
Bruce Momjian
a9566cccca
Update OS/2 URL.
2005-01-09 19:44:25 +00:00
Tom Lane
7da8623a56
Last batch of updates in response to 7.4 interactive docs comments.
2005-01-09 18:58:10 +00:00
Tom Lane
7bbdb078bd
Update discussion of ALTER TABLE ADD COLUMN, per Michael Fuhr.
2005-01-09 17:47:30 +00:00
Tom Lane
0549de06ba
Fix segfault when xpath_list function is applied to an invalid document.
...
John Gray
2005-01-09 17:40:40 +00:00
Peter Eisentraut
84620860d9
New translations
2005-01-09 17:38:19 +00:00
Peter Eisentraut
a58e738cd7
Translation updates
2005-01-09 17:32:05 +00:00
Peter Eisentraut
8511a1b734
New translation
2005-01-09 17:10:29 +00:00
Peter Eisentraut
11ca6d580c
Translation updates
2005-01-09 17:07:27 +00:00
Tom Lane
b548cde1f5
Some more small improvements in response to 7.4 interactive docs comments.
2005-01-09 05:57:45 +00:00
Tom Lane
8afe005f42
Consistently use geteuid() not getuid(); there were a few places deviating
...
from our long-established standard.
2005-01-08 22:51:15 +00:00
Tom Lane
b5adf46cbd
Some more small improvements in response to 7.4 interactive docs comments.
2005-01-08 22:13:38 +00:00
Peter Eisentraut
b19011e10c
Update supported platforms list.
2005-01-08 09:54:47 +00:00
Peter Eisentraut
3bfb93a441
New version of mkinstalldirs fixes problems on Tru64 UNIX.
2005-01-08 09:54:29 +00:00
Tom Lane
6889537c48
Some small docs improvements motivated by reading the comments for the 7.4
...
7.4 interactive docs.
2005-01-08 05:19:18 +00:00
Bruce Momjian
cb6eab78b7
Remove mp3 that is now missing.
2005-01-08 03:59:04 +00:00
Tom Lane
cef2cc50b5
Some small docs improvements motivated by reading the comments for the
...
7.4 interactive docs.
2005-01-08 01:44:08 +00:00
Tom Lane
3b5152cac6
Improve comments in sample config files.
2005-01-07 23:59:17 +00:00
Tom Lane
ffce35fe6f
Add a tip showing how functions on composite types can be used to
...
emulate computed fields. I suppose this is why the Berkeley boys made
it work that way in the first place, but the docs never said so anyplace.
2005-01-07 23:08:44 +00:00
Tom Lane
4e64e7f563
Improve discussion of SQL functions taking/returning row types.
2005-01-07 22:40:46 +00:00
Peter Eisentraut
7a986fb4a4
Update supported platforms list
2005-01-07 10:21:02 +00:00
Bruce Momjian
826f732562
Fix ECPGstatus() documentation of parameters.
...
Edmund Bacon
2005-01-07 05:43:28 +00:00
PostgreSQL Daemon
75a59ad6d1
upgrade tags to rc4
2005-01-07 02:44:31 +00:00