[COMMITTERS] pgsql: Add const qualifiers where they are accidentally cast away

2012-02-28 Thread Peter Eisentraut
Add const qualifiers where they are accidentally cast away This only produces warnings under -Wcast-qual, but it's more correct and consistent in any case. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/973e9fb294dc05a384ecae7623923ae53cb81806 Modified Files --

[COMMITTERS] pgsql: Fix thinko in new match_join_clauses_to_index() logic.

2012-02-28 Thread Tom Lane
Fix thinko in new match_join_clauses_to_index() logic. We don't need to constrain the other side of an indexable join clause to not be below an outer join; an example here is SELECT FROM t1 LEFT JOIN t2 ON t1.a = t2.b LEFT JOIN t3 ON t2.c = t3.d; We can consider an inner indexscan on t3.d using

[COMMITTERS] pgsql: Move CRC tables to libpgport, and provide them in a separate inc

2012-02-28 Thread Tom Lane
Move CRC tables to libpgport, and provide them in a separate include file. This makes it much more convenient to build tools for Postgres that are separately compiled and require a matching CRC implementation. To prevent multiple copies of the CRC polynomial tables being introduced into the postg

[COMMITTERS] pgsql: Fix typo in comment

2012-02-28 Thread Alvaro Herrera
Fix typo in comment Haifeng Liu Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/58e9f974dcfae7c4c445631afad47d80deb83160 Modified Files -- src/include/utils/json.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via pgsql-committers

[COMMITTERS] pgsql: Fix MSVC builds for previous patch's addition of a src/port file

2012-02-28 Thread Tom Lane
Fix MSVC builds for previous patch's addition of a src/port file. (And why in the world is this OBJS list not being scraped from the corresponding Makefile?) Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8cae5810ebaaabb54171d9953bdd9cc802f0d135 Modified Files