- 24 May, 2004 2 commits
-
-
Tom Lane authored
of correctly identifying the system's daylight-savings transition rules. This still begs the question of how to look through the zic database to find a matching zone definition, but at least now we'll have some chance of recognizing the match when we find it.
-
Bruce Momjian authored
-
- 23 May, 2004 9 commits
-
-
Tom Lane authored
names. Per report from Alvaro.
-
Tom Lane authored
setting. This is a temporary kluge to keep Alvaro happy; eventually we should fix the TZ library API to make the problem really go away.
-
Tom Lane authored
in postgresql.conf does the right thing. variable.c got this right, but not pgtz.c ...
-
Neil Conway authored
-
Tom Lane authored
ago. This should give significantly better results when the density of live tuples is not uniform throughout a table. Manfred Koizar, with minor kibitzing from Tom Lane.
-
Tom Lane authored
remove the ancient (and always pretty dodgy) assumption in parse_clause.c that a query can't have an empty targetlist.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
(SIGUSR1, which we have not been using recently) instead of piggybacking on SIGUSR2-driven NOTIFY processing. This has several good results: the processing needed to drain the sinval queue is a lot less than the processing needed to answer a NOTIFY; there's less contention since we don't have a bunch of backends all trying to acquire exclusive lock on pg_listener; backends that are sitting inside a transaction block can still drain the queue, whereas NOTIFY processing can't run if there's an open transaction block. (This last is a fairly serious issue that I don't think we ever recognized before --- with clients like JDBC that tend to sit with open transaction blocks, the sinval queue draining mechanism never really worked as intended, probably resulting in a lot of useless cache-reset overhead.) This is the last of several proposed changes in response to Philip Warner's recent report of sinval-induced performance problems.
-
- 22 May, 2004 8 commits
-
-
Tom Lane authored
(ie, when not inside a transaction block), so that we can avoid holding locks longer than necessary. Per trouble report from Philip Warner.
-
Tom Lane authored
to ExclusiveLock. This still serializes the operations of this module, but doesn't conflict with concurrent ANALYZE operations. Per trouble report from Philip Warner a few weeks ago.
-
Tom Lane authored
-
Neil Conway authored
-
Neil Conway authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
functions. This allows these functions to work correctly with Unicode and other multibyte encodings. Per prior discussion. Also, revert my earlier change to move installation path mashing from Makefile.global to configure. Turns out not to work well because configure script is working with unexpanded variables, and so fails to match in cases where it should match.
-
- 21 May, 2004 12 commits
-
-
Tom Lane authored
does it. Fixes OS X, which needs path.c. It may be that Win32 needs some more port modules, but they are easily added.
-
Tom Lane authored
respect to doubly-starred comment blocks. Do some manual cleanup.
-
Tom Lane authored
several different module Makefiles with it. Also, do any adjustment of installation paths during configure, rather than every time Makefile.global is read.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Michael Meskes authored
- Made sure connect statement does not accept single char variable, but only strings.
-
Bruce Momjian authored
-
Tom Lane authored
and should do now that we control our own destiny for timezone handling, but this commit gets the bulk of the picayune diffs in place. Magnus Hagander and Tom Lane.
-
Bruce Momjian authored
-
Bruce Momjian authored
problems with it.
-
Tom Lane authored
are sticky about non-PIC code in shared libraries. Windows will have to find another solution (probably similar to the way libpq does it).
-
- 20 May, 2004 9 commits
-
-
PostgreSQL Daemon authored
benign change ...added space to end of line
-
PostgreSQL Daemon authored
attempt at a multi file commit, to seee how it formats
-
PostgreSQL Daemon authored
just testing activitymail ... only added a space here so that the commit would pick it up
-
Tom Lane authored
dirty standard headers (eg AIX).
-
Bruce Momjian authored
> * Support composite types as table columns 286,289d286 < * Python < o Allow users to register their own types with pg_ < o Allow SELECT to return a dictionary of dictionaries < o Allow COPY BINARY FROM 456d452 < * Support composite types as table columns
-
Bruce Momjian authored
< Bracketed items "[]" have more detailed. > Bracketed items "[]" have more detail. 35,36d34 < * Remove unreferenced table files and temp tables during database vacuum < or postmaster startup (Bruce) 68c66 < * Allow pg_dump to dump sequences using NO_MAXVALUE and NO_MINVALUE > * -Allow pg_dump to dump sequences using NO_MAXVALUE and NO_MINVALUE 70c68 < * Prevent whole-row references from leaking memory, e.g. SELECT COUNT(tab.*) > * -Prevent whole-row references from leaking memory, e.g. SELECT COUNT(tab.*) 76c74 < * Make LENGTH() of CHAR() not count trailing spaces > * -Make LENGTH() of CHAR() not count trailing spaces 145c143 < * Allow SELECT * FROM tab WHERE int2col = 4 to use int2col index, int8, > * -Allow SELECT * FROM tab WHERE int2col = 4 to use int2col index, int8, 179c177 < * Allow more ISOLATION LEVELS to be accepted, but issue a warning for them > * -Allow more ISOLATION LEVELS to be accepted 186c184 < * Add GUC setting to make created tables default to WITHOUT OIDS > * -Add GUC setting to make created tables default to WITHOUT OIDS 265d262 < * Allow fastpast to pass values in portable format 271c268 < * Move psql backslash database information into the backend, use nmumonic > * Move psql backslash database information into the backend, use nmeumonic 275,283d271 < * JDBC < o Comprehensive test suite. This may be available already. < o JDBC-standard BLOB support < o Error Codes (pending backend implementation) < o Support both 'make' and 'ant' < o Fix LargeObject API to handle OIDs as unsigned ints < o Use cursors implicitly to avoid large results (see setCursorName()) < o Add LISTEN/NOTIFY support to the JDBC driver (Barry) < 332c320 < * Have pg_dump -c clear the database using dependency information > * -Have pg_dump -c clear the database using dependency information 367,368c355,356 < * Cache last known per-tuple offsets to speed long tuple access < * Automatically place fixed-width, NOT NULL columns first in a table > * Cache last known per-tuple offsets to speed long tuple access, adjusting > for NULLs and TOAST values 467c455,456 < * Change representation of whole-tuple parameters to functions > * -Change representation of whole-tuple parameters to functions > * Support composite types as table columns 478,479d466 < * Allow the regression tests to start postmaster with -i so the tests < can be run on systems that don't support unix-domain sockets
-
Bruce Momjian authored
-
Bruce Momjian authored
Add Win32 code to look in the current directory before the path. Add code so memory is allocated using palloc in backend object files.
-
Tom Lane authored
-