[COMMITTERS] orafce - orafce: fixed a issues related to 9.1 collations fixed a gcc

2011-05-27 Thread User Okbob
Log Message: --- fixed a issues related to 9.1 collations fixed a gcc 4.5.1 warnings Modified Files: -- orafce: assert.c (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/assert.c?r1=1.6&r2=1.7) file.c (r1.22 -> r1.23)

[COMMITTERS] pgsql: Check the return code of pthread_create(). Otherwise we go into

2011-05-27 Thread Heikki Linnakangas
Check the return code of pthread_create(). Otherwise we go into an infinite loop if it fails, which is what what happened on my HP-UX box. (I think the reason it failed on that box is a misconfiguration on my behalf, but that's no reason to hang.) Branch -- master Details --- http://git.p

[COMMITTERS] orafce - orafce: new files - PostgreSQL 9.1 extensions support

2011-05-27 Thread User Okbob
Log Message: --- new files - PostgreSQL 9.1 extensions support Modified Files: -- orafce: Makefile (r1.35 -> r1.36) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/Makefile?r1=1.35&r2=1.36) Added Files: --- orafce: orafce--3.

[COMMITTERS] pgsql: Preserve caller's memory context in ProcessCompletedNotifies().

2011-05-27 Thread Tom Lane
Preserve caller's memory context in ProcessCompletedNotifies(). This is necessary to avoid long-term memory leakage, because the main loop in PostgresMain expects to be executing in MessageContext, and hence is a bit sloppy about freeing stuff that is only needed for the duration of processing the

[COMMITTERS] pgsql: Preserve caller's memory context in ProcessCompletedNotifies().

2011-05-27 Thread Tom Lane
Preserve caller's memory context in ProcessCompletedNotifies(). This is necessary to avoid long-term memory leakage, because the main loop in PostgresMain expects to be executing in MessageContext, and hence is a bit sloppy about freeing stuff that is only needed for the duration of processing the

[COMMITTERS] pgsql: Improve corner cases in pg_ctl's new wait-for-postmaster-startup

2011-05-27 Thread Tom Lane
Improve corner cases in pg_ctl's new wait-for-postmaster-startup code. With "-w -t 0", we should report "still starting up", not "ok". If we fall out of the loop without ever being able to call PQping (because we were never able to construct a connection string), report "no response", not "ok".

[COMMITTERS] pgsql: Drop "meaning" column from error code table

2011-05-27 Thread Peter Eisentraut
Drop "meaning" column from error code table This is currently the same as the condition name, so it doesn't add any value, only clutter. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/420dcaaeb1a3be51b6417da59ce69d7954369211 Modified Files -- doc/src/sg

[COMMITTERS] pgsql: Remove literal tabs from message strings

2011-05-27 Thread Peter Eisentraut
Remove literal tabs from message strings Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4d7d6386d701ebf36a4de4c2a8c32826a999e437 Modified Files -- contrib/pg_standby/pg_standby.c | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-)

Re: [COMMITTERS] pgsql: Allow ALTER TABLE name {OF type | NOT OF}.

2011-05-27 Thread Cédric Villemain
2011/4/21 Robert Haas : > Allow ALTER TABLE name {OF type | NOT OF}. > > This syntax allows a standalone table to be made into a typed table, > or a typed table to be made standalone.  This is possibly a mildly > useful feature in its own right, but the real motivation for this > change is that we

[COMMITTERS] pgsql: Remove unused variable

2011-05-27 Thread Alvaro Herrera
Remove unused variable Cédric Villemain Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4c60a77508ee4f4d895629905265d79feaab108c Modified Files -- src/backend/commands/tablecmds.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) -- Sent via