- Jan 01, 2005
-
-
Tom Lane authored
should have been caught by the src/tools/copyright script ... why weren't they?
-
Bruce Momjian authored
-
- Dec 31, 2004
-
-
PostgreSQL Daemon authored
Tag appropriate files for rc3 Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
-
- Dec 30, 2004
-
-
Tom Lane authored
overlooked in 7.3 updates. Not a critical fix but avoids a notice when the resulting SQL script is executed.
-
- Dec 14, 2004
-
-
Tom Lane authored
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.
-
- Dec 02, 2004
-
-
Bruce Momjian authored
> > Windows service, it says you can use the -I and -R options. > > > > When I do that and I specify a password with '-P' > (uppercase) then in > > the registry it's saved as '-p' (lowercase) in the > service-commandline > > (ImagePath). This was fixed in v1.21 of pg_autovacuum.c, That rev is tagged for beta3, so you should not be seeing this issue unless you actually have an older version for some reason. http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_autovacuum/p g_autovacuum.c.diff?r1=1.20;r2=1.21;f=h > > Also it removes the quotes I added and I'm not so sure it > would work > > the way it's supposed to, without it. It's not so much that it strips them (that happens automagically), more that it doesn't re-add them when it writes the command line in the registry. The attached patch fixes that by simply quoting all options that may need it. > > If you add DependOnService (a REG_MULTI_SZ an > array-like-thingie) and > > have the name (in this case: pgsql-8.0-beta2-dev3) of a service it > > depends on, it will not fail to start (it will not even try, as > > PostgreSQL is not running), when PostgreSQL already failed. > > > > Maybe it's an idea to specify it on the commandline (what > service to > > depend on). A -E <service> option is added in the attached patch. Dave Page
-
Bruce Momjian authored
the xml2 contrib module. It's against 8.0beta4. It's intended for commit. Markus Bertheau <twanger@bluetwanger.de>
-
Bruce Momjian authored
Kenneth Marshall
-
Neil Conway authored
Michael Fuhr. Along the way, fix a bunch of accesses to uninitialized memory, add a mystrdup() routine and use it to cleanup some code.
-
- Nov 29, 2004
-
-
Tom Lane authored
-
- Nov 27, 2004
- Nov 24, 2004
-
-
Neil Conway authored
has been defined. Previously, pgcrypto would compile but would be unusable.
-
- Nov 17, 2004
- Nov 12, 2004
-
-
Tom Lane authored
referencing the Database File Layout chapter I just added to the main documentation.
-
- Nov 09, 2004
-
-
Neil Conway authored
warnings: - remove pointless "extern" keyword from some function definitions in contrib/tsearch2 - use "NULL" not "0" as NULL pointer in contrib/tsearch, contrib/tsearch2, contrib/pgbench, and contrib/vacuumlo
-
- Nov 05, 2004
-
-
Tom Lane authored
clause implicitly whenever one is not given explicitly. Remove concept of a schema having an associated tablespace, and simplify the rules for selecting a default tablespace for a table or index. It's now just (a) explicit TABLESPACE clause; (b) default_tablespace if that's not an empty string; (c) database's default. This will allow pg_dump to use SET commands instead of tablespace clauses to determine object locations (but I didn't actually make it do so). All per recent discussions.
-
- Nov 04, 2004
-
-
Neil Conway authored
for consistency.
-
Neil Conway authored
- add some additional files to the dbmirror install (approved by ssinger) - add a makefile for contrib/mysql, and add mysql to the list of contribs build by default - use xml2-config to pickup -I flags for libxml2 in contrib/xml and contrib/xml2 Original work from Martin Pitt of Debian, minor cleanups by Neil Conway.
-
Bruce Momjian authored
Add the script name to the tmp directory name. Move trap up now that the dir is more unique.
-
Bruce Momjian authored
-
- Nov 03, 2004
-
-
Bruce Momjian authored
-
- Nov 01, 2004
-
-
Neil Conway authored
documentation.
-
- Oct 29, 2004
-
-
Tom Lane authored
snprintf(data, len, %s, NULL) crash. The code was trying to find a connection by name when it already had an unnamed connection and did not have a name to search with. Kris Jurka
-
- Oct 25, 2004
-
-
Tom Lane authored
-
Tom Lane authored
writing 'foo()' rather than 'foo(void)'.
-
Neil Conway authored
returning a NULL pointer (some callers remembered to check the return value, but some did not -- it is safer to just bail out). Also, cleanup pgstat.c to use elog(ERROR) rather than elog(LOG) followed by exit().
-
Tom Lane authored
-
- Oct 24, 2004
- Oct 21, 2004
- Oct 20, 2004
-
-
Tom Lane authored
while running this script.
-
- Oct 18, 2004
-
-
Tom Lane authored
that a tsearch2 installation can be relocatable.
-
- Oct 16, 2004
-
-
Tom Lane authored
Whack some semblance of project-conventions-conformance into pg_autovacuum.h.
-
Tom Lane authored
http://archives.postgresql.org/pgsql-hackers/2004-10/msg00464.php. This fix is intended to be permanent: it moves the responsibility for calling SetBufferCommitInfoNeedsSave() into the tqual.c routines, eliminating the requirement for callers to test whether t_infomask changed. Also, tighten validity checking on buffer IDs in bufmgr.c --- several routines were paranoid about out-of-range shared buffer numbers but not about out-of-range local ones, which seems a tad pointless.
-
- Oct 13, 2004
-
-
Neil Conway authored
and contrib/xml2
-
- Oct 12, 2004
-
-
Tom Lane authored
-