[COMMITTERS] bizgres - bizgres: Change work_mem and shared_buffers defaults for

2006-03-30 Thread User Llonergan
Log Message: --- Change work_mem and shared_buffers defaults for larger memory machines more typical in 2006 (>4GB of RAM). Sort performance should improve greatly as a result of the change in work_mem. Modified Files: -- bizgres/postgresql/src/backend/utils/misc:

[COMMITTERS] pgaccess - pgaccess: removed OID dependency for form

2006-03-30 Thread User Cmaj
Log Message: --- removed OID dependency for form create/edit/save/rename Modified Files: -- pgaccess/lib: forms.tcl (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgaccess/pgaccess/lib/forms.tcl.diff?r1=1.2&r2=1.3) ---(

[COMMITTERS] pgsql: Improve gist XLOG code to follow the coding rules needed to

2006-03-30 Thread Tom Lane
Log Message: --- Improve gist XLOG code to follow the coding rules needed to prevent torn-page problems. This introduces some issues of its own, mainly that there are now some critical sections of unreasonably broad scope, but it's a step forward anyway. Further cleanup will require some

[COMMITTERS] pgsql: Suppress attempts to report dropped tables to the stats collector

2006-03-30 Thread Tom Lane
Log Message: --- Suppress attempts to report dropped tables to the stats collector from a startup or recovery process. Since such a process isn't a real backend, pgstat.c gets confused. This accounts for recent reports of strange "invalid server process ID -1" log messages during crash re

[COMMITTERS] pgsql: Suppress attempts to report dropped tables to the stats collector

2006-03-30 Thread Tom Lane
Log Message: --- Suppress attempts to report dropped tables to the stats collector from a startup or recovery process. Since such a process isn't a real backend, pgstat.c gets confused. This accounts for recent reports of strange "invalid server process ID -1" log messages during crash re

[COMMITTERS] python - fe: Don't close the connection on __del__.

2006-03-30 Thread James William Pye
Log Message: --- Don't close the connection on __del__. While convenient, this is potentially undesireable. In particular, I imagine there may be cases where it is desireable to pass around internals of already established connections; Interchange or the Interchange's pipe. Additionally, i