Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-01-17 | Translation updates | Peter Eisentraut | |
2005-01-17 | its that time ... tag it for releaseREL8_0_0 | PostgreSQL Daemon | |
2005-01-17 | Translation updates | Peter Eisentraut | |
2005-01-17 | Translation updates | Peter Eisentraut | |
2005-01-17 | Translation updates | Peter Eisentraut | |
2005-01-17 | Fix format string error. | Peter Eisentraut | |
2005-01-17 | This trivial patch adds a regression test for CASE expressions that use | Neil Conway | |
an untyped literal in the CASE's test expression. This adds test coverage for a bug that was fixed by Tom on January 12. | |||
2005-01-17 | Translation updates | Peter Eisentraut | |
2005-01-17 | New translation | Peter Eisentraut | |
2005-01-17 | Translation updates | Peter Eisentraut | |
2005-01-15 | Adjust warning message about Windows console code page to point to | Tom Lane | |
the right place in the docs, and gettext()ify it. | |||
2005-01-15 | pg_regress now needs to know that Windows hasn't got unix sockets, | Tom Lane | |
per Andrew Dunstan. Also, don't override the user's value of PGHOST in the 'make installcheck' case. I think the latter was an ill-considered workaround for the Windows code back when libpq didn't properly default to localhost on Unix-socket-less platforms. | |||
2005-01-14 | postgres -boot would print the wrong program name in event of a | Tom Lane | |
failure in SelectConfigFiles(). Cosmetic issue, but ... | |||
2005-01-14 | Update obsolete comment, per Alvaro. | Tom Lane | |
2005-01-14 | Add missing gettext() calls in find_my_exec(). It's probably too late | Tom Lane | |
to get these strings translated, but we may as well have them be translatable as not. | |||
2005-01-14 | plperl trigger handler tried to fetch new/old tuples even when fired | Tom Lane | |
as a statement trigger :-(. Per report from Sokolov Yura. | |||
2005-01-14 | Translation updates | Peter Eisentraut | |
2005-01-14 | Change Win32 client configuration files from *.txt to *.conf. | Bruce Momjian | |
2005-01-13 | Change exec_eval_simple_expr's param list allocation call from | Tom Lane | |
MemoryContextAllocZero back to MemoryContextAlloc, same as it was in 7.4. The zeroing is unnecessary since all the meaningful fields are filled in just below. I had made it do that out of neatnik-ism, but some testing with an example provided by Pavel Stehule showed that the zeroing was accounting for about 5% of the runtime in a compute-intensive plpgsql function. That seems a bit high of a price for neatnik-ism... | |||
2005-01-13 | Translation updates | Peter Eisentraut | |
2005-01-13 | Translation updates | Peter Eisentraut | |
2005-01-13 | Adjust src/tutorial Makefile so that it can use pgxs. This allows the | Tom Lane | |
tutorial to be used without necessarily having a configured source tree. | |||
2005-01-13 | get_names_for_var didn't do recursion for unnamed JOIN vars quite right; | Tom Lane | |
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 | Remove unportable assumption that it's okay to use the target buffer | Tom Lane | |
of an sprintf() as a source string. Demonstrably does not work with recent gcc and/or glibc on some platforms. | |||
2005-01-12 | Add conditional inclusion of <com_err.h> to support old 'heimdal' | Tom Lane | |
version of Kerberos. Per report from Reinhard Max. | |||
2005-01-12 | Re-allow an untyped literal as the test expression of a CASE, ie | Tom Lane | |
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 | Increase MAXLISTEN to a more generous value, and add an error message | Tom Lane | |
telling when it has been exceeded. Per trouble report from Jean-GÅrard Pailloncy. | |||
2005-01-12 | Ensure that the test postmaster started by 'make check' listens to as | Tom Lane | |
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-11 | interval_out failed to mention 'ago' for negative intervals in SQL and | Tom Lane | |
GERMAN datestyles. Ancient bug reported by Terry Lee Tucker. | |||
2005-01-11 | Fix tracking of dump-order dependencies for stand-alone composite types. | Tom Lane | |
Per report from Robert Koepferl. | |||
2005-01-11 | plperl was not being quite paranoid enough about detecting 'undef' values | Tom Lane | |
returned by Perl. Per report from Nicolas Addington. | |||
2005-01-11 | up release to rc5REL8_0_0RC5 | PostgreSQL Daemon | |
2005-01-11 | Clean up pg_dump's handling of ownership for indexes (including | Tom Lane | |
pkey/unique constraint indexes) and schemas. Per report from Michael Fuhr. | |||
2005-01-10 | Separate the functions of relcache entry flush and smgr cache entry flush | Tom Lane | |
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 | Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. This | Tom Lane | |
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 | Fixed segfault in adjust_informix due to missing varchar type. | Michael Meskes | |
2005-01-10 | Translation updates | Peter Eisentraut | |
2005-01-10 | Comment out check for substitution of private key file on Windows, | Tom Lane | |
since st_ino can't be trusted on that platform. Per report from T.J. | |||
2005-01-10 | Un-break MSVC build, per Andrew Dunstan. | Tom Lane | |
2005-01-09 | Undo an unadvertised change in the API of pg_atoi. In all previous | Tom Lane | |
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 | New translations | Peter Eisentraut | |
2005-01-09 | Translation updates | Peter Eisentraut | |
2005-01-09 | New translation | Peter Eisentraut | |
2005-01-09 | Translation updates | Peter Eisentraut | |
2005-01-08 | Consistently use geteuid() not getuid(); there were a few places deviating | Tom Lane | |
from our long-established standard. | |||
2005-01-07 | Improve comments in sample config files. | Tom Lane | |
2005-01-07 | upgrade tags to rc4REL8_0_0RC4 | PostgreSQL Daemon | |
2005-01-06 | Minor mop-up for Windows home-directory stuff, per Magnus. | Tom Lane | |
2005-01-06 | Don't list port twice in SUBDIRS. Caught by Honda Shigehiro. | Tom Lane | |
2005-01-06 | Revert -Wl, change to Makefile.osf, as the allegedly more standard | Tom Lane | |
syntax apparently does not work for all toolchains on that platform. Per Honda Shigehiro. |