[COMMITTERS] orafce - orafce: fixing formating
Log Message: --- fixing formating Modified Files: -- orafce: random.c (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/random.c?r1=1.2&r2=1.3) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] orafce - orafce: move listagg function to new file - aggregate.c.
Log Message: --- move listagg function to new file - aggregate.c. I would to implement function median, so these aggregates will be there. Modified Files: -- orafce: Makefile (r1.32 -> r1.33) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/Makefile?r1=1.32&r2=1.33) plvstr.c (r1.19 -> r1.20) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plvstr.c?r1=1.19&r2=1.20) plvstr.h (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plvstr.h?r1=1.2&r2=1.3) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] orafce - orafce: move all exported prototypes to separate file
Log Message: --- move all exported prototypes to separate file Modified Files: -- orafce: alert.c (r1.17 -> r1.18) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/alert.c?r1=1.17&r2=1.18) assert.c (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/assert.c?r1=1.5&r2=1.6) convert.c (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/convert.c?r1=1.6&r2=1.7) datefce.c (r1.16 -> r1.17) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/datefce.c?r1=1.16&r2=1.17) file.c (r1.19 -> r1.20) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/file.c?r1=1.19&r2=1.20) others.c (r1.20 -> r1.21) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/others.c?r1=1.20&r2=1.21) pipe.c (r1.25 -> r1.26) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/pipe.c?r1=1.25&r2=1.26) plunit.c (r1.8 -> r1.9) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plunit.c?r1=1.8&r2=1.9) plvlex.c (r1.9 -> r1.10) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plvlex.c?r1=1.9&r2=1.10) plvstr.c (r1.20 -> r1.21) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plvstr.c?r1=1.20&r2=1.21) plvsubst.c (r1.10 -> r1.11) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plvsubst.c?r1=1.10&r2=1.11) putline.c (r1.15 -> r1.16) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/putline.c?r1=1.15&r2=1.16) random.c (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/random.c?r1=1.3&r2=1.4) utility.c (r1.9 -> r1.10) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/utility.c?r1=1.9&r2=1.10) Added Files: --- orafce: builtins.h (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/builtins.h?rev=1.1&content-type=text/x-cvsweb-markup) Removed Files: - orafce: plvstr.h (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/plvstr.h) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix an old bug in multixact and two-phase commit.
Log Message: --- Fix an old bug in multixact and two-phase commit. Prepared transactions can be part of multixacts, so allocate a slot for each prepared transaction in the "oldest member" array in multixact.c. On PREPARE TRANSACTION, transfer the oldest member value from the current backends slot to the prepared xact slot. Also save and recover the value from the 2pc state file. The symptom of the bug was that after a transaction prepared, a shared lock still held by the prepared transaction was sometimes ignored by other transactions. Fix back to 8.1, where both 2PC and multixact were introduced. Modified Files: -- pgsql/src/backend/access/transam: multixact.c (r1.31 -> r1.32) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/multixact.c?r1=1.31&r2=1.32) twophase.c (r1.55 -> r1.56) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase.c?r1=1.55&r2=1.56) twophase_rmgr.c (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase_rmgr.c?r1=1.9&r2=1.10) xact.c (r1.275 -> r1.276) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xact.c?r1=1.275&r2=1.276) pgsql/src/include/access: multixact.h (r1.14 -> r1.15) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/multixact.h?r1=1.14&r2=1.15) twophase.h (r1.11 -> r1.12) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase.h?r1=1.11&r2=1.12) twophase_rmgr.h (r1.8 -> r1.9) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase_rmgr.h?r1=1.8&r2=1.9) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix an old bug in multixact and two-phase commit.
Log Message: --- Fix an old bug in multixact and two-phase commit. Prepared transactions can be part of multixacts, so allocate a slot for each prepared transaction in the "oldest member" array in multixact.c. On PREPARE TRANSACTION, transfer the oldest member value from the current backends slot to the prepared xact slot. Also save and recover the value from the 2pc state file. The symptom of the bug was that after a transaction prepared, a shared lock still held by the prepared transaction was sometimes ignored by other transactions. Fix back to 8.1, where both 2PC and multixact were introduced. Tags: REL8_4_STABLE Modified Files: -- pgsql/src/backend/access/transam: multixact.c (r1.31 -> r1.31.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/multixact.c?r1=1.31&r2=1.31.2.1) twophase.c (r1.54 -> r1.54.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase.c?r1=1.54&r2=1.54.2.1) twophase_rmgr.c (r1.8 -> r1.8.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase_rmgr.c?r1=1.8&r2=1.8.2.1) xact.c (r1.274 -> r1.274.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xact.c?r1=1.274&r2=1.274.2.1) pgsql/src/include/access: multixact.h (r1.14 -> r1.14.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/multixact.h?r1=1.14&r2=1.14.2.1) twophase.h (r1.11 -> r1.11.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase.h?r1=1.11&r2=1.11.2.1) twophase_rmgr.h (r1.7 -> r1.7.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase_rmgr.h?r1=1.7&r2=1.7.2.1) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix an old bug in multixact and two-phase commit.
Log Message: --- Fix an old bug in multixact and two-phase commit. Prepared transactions can be part of multixacts, so allocate a slot for each prepared transaction in the "oldest member" array in multixact.c. On PREPARE TRANSACTION, transfer the oldest member value from the current backends slot to the prepared xact slot. Also save and recover the value from the 2pc state file. The symptom of the bug was that after a transaction prepared, a shared lock still held by the prepared transaction was sometimes ignored by other transactions. Fix back to 8.1, where both 2PC and multixact were introduced. Tags: REL8_3_STABLE Modified Files: -- pgsql/src/backend/access/transam: multixact.c (r1.27 -> r1.27.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/multixact.c?r1=1.27&r2=1.27.2.1) twophase.c (r1.39.2.2 -> r1.39.2.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase.c?r1=1.39.2.2&r2=1.39.2.3) twophase_rmgr.c (r1.7 -> r1.7.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase_rmgr.c?r1=1.7&r2=1.7.2.1) xact.c (r1.257.2.3 -> r1.257.2.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xact.c?r1=1.257.2.3&r2=1.257.2.4) pgsql/src/include/access: multixact.h (r1.13 -> r1.13.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/multixact.h?r1=1.13&r2=1.13.2.1) twophase.h (r1.10 -> r1.10.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase.h?r1=1.10&r2=1.10.2.1) twophase_rmgr.h (r1.6 -> r1.6.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase_rmgr.h?r1=1.6&r2=1.6.2.1) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix an old bug in multixact and two-phase commit.
Log Message: --- Fix an old bug in multixact and two-phase commit. Prepared transactions can be part of multixacts, so allocate a slot for each prepared transaction in the "oldest member" array in multixact.c. On PREPARE TRANSACTION, transfer the oldest member value from the current backends slot to the prepared xact slot. Also save and recover the value from the 2pc state file. The symptom of the bug was that after a transaction prepared, a shared lock still held by the prepared transaction was sometimes ignored by other transactions. Fix back to 8.1, where both 2PC and multixact were introduced. Tags: REL8_2_STABLE Modified Files: -- pgsql/src/backend/access/transam: multixact.c (r1.22 -> r1.22.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/multixact.c?r1=1.22&r2=1.22.2.1) twophase.c (r1.25.2.2 -> r1.25.2.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase.c?r1=1.25.2.2&r2=1.25.2.3) twophase_rmgr.c (r1.3 -> r1.3.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase_rmgr.c?r1=1.3&r2=1.3.2.1) xact.c (r1.229.2.4 -> r1.229.2.5) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xact.c?r1=1.229.2.4&r2=1.229.2.5) pgsql/src/include/access: multixact.h (r1.11 -> r1.11.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/multixact.h?r1=1.11&r2=1.11.2.1) twophase.h (r1.8 -> r1.8.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase.h?r1=1.8&r2=1.8.2.1) twophase_rmgr.h (r1.3 -> r1.3.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase_rmgr.h?r1=1.3&r2=1.3.2.1) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix an old bug in multixact and two-phase commit.
Log Message: --- Fix an old bug in multixact and two-phase commit. Prepared transactions can be part of multixacts, so allocate a slot for each prepared transaction in the "oldest member" array in multixact.c. On PREPARE TRANSACTION, transfer the oldest member value from the current backends slot to the prepared xact slot. Also save and recover the value from the 2pc state file. The symptom of the bug was that after a transaction prepared, a shared lock still held by the prepared transaction was sometimes ignored by other transactions. Fix back to 8.1, where both 2PC and multixact were introduced. Tags: REL8_1_STABLE Modified Files: -- pgsql/src/backend/access/transam: multixact.c (r1.11.2.3 -> r1.11.2.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/multixact.c?r1=1.11.2.3&r2=1.11.2.4) twophase.c (r1.16.2.3 -> r1.16.2.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase.c?r1=1.16.2.3&r2=1.16.2.4) twophase_rmgr.c (r1.2 -> r1.2.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase_rmgr.c?r1=1.2&r2=1.2.2.1) xact.c (r1.215.2.4 -> r1.215.2.5) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xact.c?r1=1.215.2.4&r2=1.215.2.5) pgsql/src/include/access: multixact.h (r1.7.2.1 -> r1.7.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/multixact.h?r1=1.7.2.1&r2=1.7.2.2) twophase.h (r1.6 -> r1.6.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase.h?r1=1.6&r2=1.6.2.1) twophase_rmgr.h (r1.2 -> r1.2.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/twophase_rmgr.h?r1=1.2&r2=1.2.2.1) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Add missing library to standalone libpq build on Win32.
Log Message: --- Add missing library to standalone libpq build on Win32. Hiroshi Saito Modified Files: -- pgsql/src/interfaces/libpq: win32.mak (r1.54 -> r1.55) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/win32.mak?r1=1.54&r2=1.55) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] orafce - orafce: add aggregate function median.
Log Message: --- add aggregate function median. Modified Files: -- orafce: README.orafunc (r1.32 -> r1.33) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/README.orafunc?r1=1.32&r2=1.33) builtins.h (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/builtins.h?r1=1.1&r2=1.2) orafunc.sql.in (r1.62 -> r1.63) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/orafunc.sql.in?r1=1.62&r2=1.63) uninstall_orafunc.sql (r1.12 -> r1.13) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/uninstall_orafunc.sql?r1=1.12&r2=1.13) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] orafce - orafce: add missing source code file.
Log Message: --- add missing source code file. Added Files: --- orafce: aggregate.c (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/aggregate.c?rev=1.1&content-type=text/x-cvsweb-markup) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] libpqtypes - libpqtypes: Update ChangeLog
Log Message: --- Update ChangeLog Modified Files: -- libpqtypes: ChangeLog (r1.45 -> r1.46) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/libpqtypes/libpqtypes/ChangeLog?r1=1.45&r2=1.46) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] psqlodbc - psqlodbc: 1) Fix memory leaks on connection failure (Shouji
Log Message: --- 1) Fix memory leaks on connection failure (Shouji morimoto). 2) Suppress some compilation errors and warnings. Modified Files: -- psqlodbc: connection.c (r1.184 -> r1.185) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/connection.c?r1=1.184&r2=1.185) loadlib.c (r1.18 -> r1.19) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/loadlib.c?r1=1.18&r2=1.19) socket.c (r1.67 -> r1.68) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/socket.c?r1=1.67&r2=1.68) version.h (r1.149 -> r1.150) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/version.h?r1=1.149&r2=1.150) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] psqlodbc - psqlodbc: Addition some changes.
Log Message: --- Addition some changes. Modified Files: -- psqlodbc/docs: release.html (r1.55 -> r1.56) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/docs/release.html?r1=1.55&r2=1.56) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] psqlodbc - psqlodbc: build easy by the addition of an option.
Log Message: --- build easy by the addition of an option. Modified Files: -- psqlodbc/docs: unix-compilation.html (r1.9 -> r1.10) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/docs/unix-compilation.html?r1=1.9&r2=1.10) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Use diff's -w switch only on Windows, to avoid problems with
Log Message: --- Use diff's -w switch only on Windows, to avoid problems with inconsistent newline representations. Per buildfarm results and subsequent discussion. Sync up a couple of other places that had their own policies. Modified Files: -- pgsql/src/interfaces/ecpg/test: pg_regress_ecpg.c (r1.5 -> r1.6) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/pg_regress_ecpg.c?r1=1.5&r2=1.6) pgsql/src/test/mb: mbregress.sh (r1.10 -> r1.11) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/mb/mbregress.sh?r1=1.10&r2=1.11) pgsql/src/test/regress: pg_regress.c (r1.66 -> r1.67) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/pg_regress.c?r1=1.66&r2=1.67) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] orafce - orafce: lock aggregates on 8.3 and older - security reasons
Log Message: --- lock aggregates on 8.3 and older - security reasons Modified Files: -- orafce: aggregate.c (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/aggregate.c?r1=1.1&r2=1.2) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Add PG_MODULE_MAGIC and some missing include files to examples
Log Message: --- Add PG_MODULE_MAGIC and some missing include files to examples Author: Euler Taveira de Oliveira Modified Files: -- pgsql/doc/src/sgml: plhandler.sgml (r1.8 -> r1.9) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/plhandler.sgml?r1=1.8&r2=1.9) trigger.sgml (r1.60 -> r1.61) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/trigger.sgml?r1=1.60&r2=1.61) xfunc.sgml (r1.140 -> r1.141) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/xfunc.sgml?r1=1.140&r2=1.141) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
