[COMMITTERS] pgsql: This patch fixes a bug in the error message emitted by pg_restore
Log Message: --- This patch fixes a bug in the error message emitted by pg_restore on an incorrect -F argument: write_msg() expects its first parameter to be a "module name", not the format string. Modified Files: -- pgsql/src/bin/pg_dump: pg_restore.c (r1.69 -> r1.70) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_dump/pg_restore.c.diff?r1=1.69&r2=1.70) ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings
[COMMITTERS] pgbuildfarm - client-code: fix varname typo fix failure where parent
Log Message: --- fix varname typo fix failure where parent of ccache dir does not exist - ccache will only build the last segment, so we call mkpath on the whole thing. Modified Files: -- client-code: run_build.pl (r1.23 -> r1.24) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbuildfarm/client-code/run_build.pl.diff?r1=1.23&r2=1.24) ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[COMMITTERS] pgsql: Backpatch BCC compile changes to 8.0.X for psql.
Log Message: --- Backpatch BCC compile changes to 8.0.X for psql. Tags: REL8_0_STABLE Modified Files: -- pgsql/src/bin/psql: bcc32.mak (r1.12.4.1 -> r1.12.4.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/bcc32.mak.diff?r1=1.12.4.1&r2=1.12.4.2) pgsql/src/interfaces/libpq: pthread-win32.c (r1.4 -> r1.4.4.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/pthread-win32.c.diff?r1=1.4&r2=1.4.4.1) ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[COMMITTERS] pgsql: Backpatch BCC compile changes to 8.0.X for psql.
Log Message: --- Backpatch BCC compile changes to 8.0.X for psql. Modified Files: -- pgsql/src/bin/psql: bcc32.mak (r1.12 -> r1.13) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/bcc32.mak.diff?r1=1.12&r2=1.13) command.c (r1.142 -> r1.143) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/command.c.diff?r1=1.142&r2=1.143) startup.c (r1.113 -> r1.114) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/startup.c.diff?r1=1.113&r2=1.114) win32.mak (r1.26 -> r1.27) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/win32.mak.diff?r1=1.26&r2=1.27) pgsql/src/interfaces/libpq: Makefile (r1.131 -> r1.132) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/Makefile.diff?r1=1.131&r2=1.132) bcc32.mak (r1.15 -> r1.16) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/bcc32.mak.diff?r1=1.15&r2=1.16) fe-exec.c (r1.166 -> r1.167) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/fe-exec.c.diff?r1=1.166&r2=1.167) pthread-win32.c (r1.4 -> r1.5) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/pthread-win32.c.diff?r1=1.4&r2=1.5) win32.mak (r1.33 -> r1.34) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/win32.mak.diff?r1=1.33&r2=1.34) ---(end of broadcast)--- TIP 8: explain analyze is your friend
[COMMITTERS] pgsql: Improve cleanup from win32 client-only build.
Log Message: --- Improve cleanup from win32 client-only build. Modified Files: -- pgsql/src/interfaces/libpq: Makefile (r1.132 -> r1.133) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/Makefile.diff?r1=1.132&r2=1.133) bcc32.mak (r1.16 -> r1.17) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/bcc32.mak.diff?r1=1.16&r2=1.17) ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster
[COMMITTERS] pgsql: Improve cleanup from win32 client-only build.
Log Message: --- Improve cleanup from win32 client-only build. Tags: REL8_0_STABLE Modified Files: -- pgsql/src/interfaces/libpq: Makefile (r1.126.4.3 -> r1.126.4.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/Makefile.diff?r1=1.126.4.3&r2=1.126.4.4) ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings
Re: [COMMITTERS] pgsql: Backpatch BCC compile changes to 8.0.X for psql.
[EMAIL PROTECTED] (Bruce Momjian) writes: > startup.c (r1.113 -> r1.114) > > (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/startup.c.diff?r1=1.113&r2=1.114) You probably just broke at least one Unix platform. My recollection is that "int optreset", not "extern int optreset", is essential on the platforms that don't HAVE_INT_OPTRESET. Certainly we do that everyplace else. Please wrap this change in a suitable bcc #ifdef. regards, tom lane ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[COMMITTERS] pgsql: Remove extern from optreset that was just added.
Log Message: --- Remove extern from optreset that was just added. Modified Files: -- pgsql/src/bin/psql: startup.c (r1.114 -> r1.115) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/startup.c.diff?r1=1.114&r2=1.115) ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org
Re: [COMMITTERS] pgsql: Backpatch BCC compile changes to 8.0.X for psql.
Tom Lane wrote: > [EMAIL PROTECTED] (Bruce Momjian) writes: > > startup.c (r1.113 -> r1.114) > > > > (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/startup.c.diff?r1=1.113&r2=1.114) > > You probably just broke at least one Unix platform. My recollection is > that "int optreset", not "extern int optreset", is essential on the > platforms that don't HAVE_INT_OPTRESET. Certainly we do that > everyplace else. > > Please wrap this change in a suitable bcc #ifdef. OK, I just put it back to original because I couldn't get it to link anyway for BCC. -- Bruce Momjian| http://candle.pha.pa.us [email protected] | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup.| Newtown Square, Pennsylvania 19073 ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[COMMITTERS] python - be: Add high and low attributes for boxes and A, B, and C
Log Message: --- Add high and low attributes for boxes and A, B, and C attributes for the apparently unimplemented line type... Modified Files: -- be/src: object.c (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/object.c.diff?r1=1.5&r2=1.6) ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq
[COMMITTERS] pgsql: Restructure LOCKTAG as per discussions of a couple months ago.
Log Message: --- Restructure LOCKTAG as per discussions of a couple months ago. Essentially, we shoehorn in a lockable-object-type field by taking a byte away from the lockmethodid, which can surely fit in one byte instead of two. This allows less artificial definitions of all the other fields of LOCKTAG; we can get rid of the special pg_xactlock pseudo-relation, and also support locks on individual tuples and general database objects (including shared objects). None of those possibilities are actually exploited just yet, however. I removed pg_xactlock from pg_class, but did not force initdb for that change. At this point, relkind 's' (SPECIAL) is unused and could be removed entirely. Modified Files: -- pgsql/contrib/userlock: README.user_locks (r1.2 -> r1.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/userlock/README.user_locks.diff?r1=1.2&r2=1.3) user_locks.c (r1.14 -> r1.15) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/userlock/user_locks.c.diff?r1=1.14&r2=1.15) user_locks.h (r1.7 -> r1.8) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/userlock/user_locks.h.diff?r1=1.7&r2=1.8) pgsql/src/backend/access/heap: hio.c (r1.54 -> r1.55) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/heap/hio.c.diff?r1=1.54&r2=1.55) pgsql/src/backend/access/nbtree: nbtpage.c (r1.82 -> r1.83) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/nbtree/nbtpage.c.diff?r1=1.82&r2=1.83) pgsql/src/backend/storage/lmgr: README (r1.15 -> r1.16) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/lmgr/README.diff?r1=1.15&r2=1.16) deadlock.c (r1.33 -> r1.34) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/lmgr/deadlock.c.diff?r1=1.33&r2=1.34) lmgr.c (r1.71 -> r1.72) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/lmgr/lmgr.c.diff?r1=1.71&r2=1.72) lock.c (r1.149 -> r1.150) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/lmgr/lock.c.diff?r1=1.149&r2=1.150) pgsql/src/backend/utils/adt: lockfuncs.c (r1.16 -> r1.17) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/lockfuncs.c.diff?r1=1.16&r2=1.17) pgsql/src/include/catalog: pg_attribute.h (r1.116 -> r1.117) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_attribute.h.diff?r1=1.116&r2=1.117) pg_class.h (r1.87 -> r1.88) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_class.h.diff?r1=1.87&r2=1.88) pgsql/src/include/storage: lmgr.h (r1.46 -> r1.47) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/storage/lmgr.h.diff?r1=1.46&r2=1.47) lock.h (r1.84 -> r1.85) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/storage/lock.h.diff?r1=1.84&r2=1.85) ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
[COMMITTERS] python - web: Remove the rather ambiguous reference to "various
Log Message: --- Remove the rather ambiguous reference to "various interfaces" and cite the single-dimensional support. Modified Files: -- web/src/documentation/content/xdocs/project: be.xml (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/project/be.xml.diff?r1=1.4&r2=1.5) ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match
[COMMITTERS] python - lo: Alter name and version to be appropriate for sdist
Log Message: --- Alter name and version to be appropriate for sdist Modified Files: -- lo: setup.py (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/lo/setup.py.diff?r1=1.5&r2=1.6) ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
[COMMITTERS] python - me: Make name and version more suitable for sdist
Log Message: --- Make name and version more suitable for sdist Modified Files: -- me: setup.py (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/me/setup.py.diff?r1=1.2&r2=1.3) ---(end of broadcast)--- TIP 8: explain analyze is your friend
[COMMITTERS] python - ex: Make name and version sdist friendly.
Log Message: --- Make name and version sdist friendly. Modified Files: -- ex: setup.py (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/ex/setup.py.diff?r1=1.2&r2=1.3) ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings
[COMMITTERS] python - be: Make name and version sdist friendly.
Log Message: --- Make name and version sdist friendly. Modified Files: -- be: setup.py (r1.8 -> r1.9) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/setup.py.diff?r1=1.8&r2=1.9) ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org
[COMMITTERS] python - web: Add the yet-to-exist project/ip and mention it in the
Log Message: --- Add the yet-to-exist project/ip and mention it in the various places. Modified Files: -- web/src/documentation: skinconf.xml (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/skinconf.xml.diff?r1=1.2&r2=1.3) web/src/documentation/content/xdocs: faq.xml (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/faq.xml.diff?r1=1.2&r2=1.3) index.xml (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/index.xml.diff?r1=1.5&r2=1.6) site.xml (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/site.xml.diff?r1=1.4&r2=1.5) web/src/documentation/translations: langcode.xml (r1.1.1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/translations/langcode.xml.diff?r1=1.1.1.1&r2=1.2) Added Files: --- web/src/documentation/content/xdocs/project: ip.xml (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/project/ip.xml?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[COMMITTERS] python - web: Give explicit authorization to use any of the works under
Log Message: --- Give explicit authorization to use any of the works under the BSD, MIT, or Fair licenses. Modified Files: -- web/src/documentation/content/xdocs: license.xml (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/license.xml.diff?r1=1.2&r2=1.3) ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings
[COMMITTERS] python - be: Be sure give the caller a reference.
Log Message: --- Be sure give the caller a reference. Modified Files: -- be/src: utils.c (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/utils.c.diff?r1=1.5&r2=1.6) ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
[COMMITTERS] python - web: Add the "Quick Start" for some wanna-be documentation.
Log Message: --- Add the "Quick Start" for some wanna-be documentation. Modified Files: -- web/src/documentation/content/xdocs: site.xml (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/site.xml.diff?r1=1.5&r2=1.6) Added Files: --- web/src/documentation/content/xdocs: quick.xml (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/quick.xml?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
Re: [COMMITTERS] pgsql: Improve cleanup from win32 client-only build.
Bruce Momjian wrote: Improve cleanup from win32 client-only build. Why does the 8.0 backport not include this change, which was made to HEAD? http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/bcc32.mak.diff?r1=1.16&r2=1.17 -Neil ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match
[COMMITTERS] pgsql: Update FAQ.
Log Message: --- Update FAQ. Modified Files: -- pgsql/doc: FAQ (r1.347 -> r1.348) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.347&r2=1.348) pgsql/doc/src/FAQ: FAQ.html (r1.304 -> r1.305) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/FAQ/FAQ.html.diff?r1=1.304&r2=1.305) ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match
[COMMITTERS] pgsql: Update replication FAQ.
Log Message: --- Update replication FAQ. Christopher Browne Modified Files: -- pgsql/doc: FAQ (r1.346 -> r1.347) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.346&r2=1.347) pgsql/doc/src/FAQ: FAQ.html (r1.303 -> r1.304) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/FAQ/FAQ.html.diff?r1=1.303&r2=1.304) ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
Re: [COMMITTERS] pgsql: Improve cleanup from win32 client-only build.
Thanks, fixed. --- Neil Conway wrote: > Bruce Momjian wrote: > > Improve cleanup from win32 client-only build. > > Why does the 8.0 backport not include this change, which was made to HEAD? > > http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/bcc32.mak.diff?r1=1.16&r2=1.17 > > -Neil > -- Bruce Momjian| http://candle.pha.pa.us [email protected] | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup.| Newtown Square, Pennsylvania 19073 ---(end of broadcast)--- TIP 8: explain analyze is your friend
[COMMITTERS] pgsql: Fix BCC to not define compiler location.
Log Message: --- Fix BCC to not define compiler location. Modified Files: -- pgsql/src/interfaces/libpq: bcc32.mak (r1.17 -> r1.18) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/bcc32.mak.diff?r1=1.17&r2=1.18) ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])
