Re: [COMMITTERS] pgsql: Enable building with the Mingw64 compiler.

2011-01-30 Thread Andrew Dunstan
On 01/30/2011 08:10 PM, Tom Lane wrote: Andrew Dunstan writes: Enable building with the Mingw64 compiler. +#if defined(_WIN32_WINNT)&& _WIN32_WINNT< 0x0501 +#undefine _WIN32_WINNT +#endif Umm ... surely "#undefine" is a typo? Darn, yes. I even tested it. Anyway

[COMMITTERS] pgsql: Tag refs/tags/REL8_4_7 was created

2011-01-30 Thread pgsql
Tag refs/tags/REL8_4_7 was created. -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL8_3_14 was created

2011-01-30 Thread pgsql
Tag refs/tags/REL8_3_14 was created. -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_0_3 was created

2011-01-30 Thread pgsql
Tag refs/tags/REL9_0_3 was created. -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL8_2_20 was created

2011-01-30 Thread pgsql
Tag refs/tags/REL8_2_20 was created. -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Fix typo

2011-01-30 Thread Andrew Dunstan
Fix typo Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=48c9de80283d4bbdf9bec2f2f929b23f1676f8f9 Modified Files -- src/include/port/win32.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via pgsql-committer

Re: [COMMITTERS] pgsql: Enable building with the Mingw64 compiler.

2011-01-30 Thread Tom Lane
Andrew Dunstan writes: > Enable building with the Mingw64 compiler. > +#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0501 > +#undefine _WIN32_WINNT > +#endif Umm ... surely "#undefine" is a typo? regards, tom lane -- Sent via pgsql-committers mailing list (pgsql-commit

[COMMITTERS] pgsql: Enable building with the Mingw64 compiler.

2011-01-30 Thread Andrew Dunstan
Enable building with the Mingw64 compiler. This can be used to build 64 bit Windows binaries, not only on 64 bit Windows but on supported cross-compiling hosts including 32 bit Windows, Cygwin, Darwin and Linux. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.g

[COMMITTERS] pgsql: Make reduce_outer_joins() smarter about semijoins.

2011-01-30 Thread Tom Lane
Make reduce_outer_joins() smarter about semijoins. reduce_outer_joins() mistakenly treated a semijoin like a left join for purposes of deciding whether not-null constraints created by the join's quals could be passed down into the join's left-hand side (possibly resulting in outer-join simplificat

[COMMITTERS] pgsql: Make reduce_outer_joins() smarter about semijoins.

2011-01-30 Thread Tom Lane
Make reduce_outer_joins() smarter about semijoins. reduce_outer_joins() mistakenly treated a semijoin like a left join for purposes of deciding whether not-null constraints created by the join's quals could be passed down into the join's left-hand side (possibly resulting in outer-join simplificat

[COMMITTERS] pgsql: Make reduce_outer_joins() smarter about semijoins.

2011-01-30 Thread Tom Lane
Make reduce_outer_joins() smarter about semijoins. reduce_outer_joins() mistakenly treated a semijoin like a left join for purposes of deciding whether not-null constraints created by the join's quals could be passed down into the join's left-hand side (possibly resulting in outer-join simplificat

[COMMITTERS] pgsql: Add option to include WAL in base backup

2011-01-30 Thread Magnus Hagander
Add option to include WAL in base backup When included, this makes the base backup a complete working "clone" of the initial database, ready to have a postmaster started against it without the need to set up any log archiving or similar. Magnus Hagander, reviewed by Fujii Masao and Heikki Linnaka