[COMMITTERS] pgsql: Remove tabs in SGML file.

2011-12-18 Thread Bruce Momjian
Remove tabs in SGML file. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/153c8dbd8ca3f6736dd220edda7d4392f5381a33 Modified Files -- doc/src/sgml/monitoring.sgml |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- Sent via pgsql-committers

[COMMITTERS] pgsql: In ecpg removed old leftover check for given connection name.

2011-12-18 Thread Michael Meskes
In ecpg removed old leftover check for given connection name. Ever since we introduced real prepared statements this should work for different connections. The old solution just emulating prepared statements, though, wasn't able to handle this. Closes: #6309 Branch -- REL9_0_STABLE Details

[COMMITTERS] pgsql: In ecpg removed old leftover check for given connection name.

2011-12-18 Thread Michael Meskes
In ecpg removed old leftover check for given connection name. Ever since we introduced real prepared statements this should work for different connections. The old solution just emulating prepared statements, though, wasn't able to handle this. Closes: #6309 Branch -- REL8_4_STABLE Details

[COMMITTERS] pgsql: Added test for cursor handling on different connections to regre

2011-12-18 Thread Michael Meskes
Added test for cursor handling on different connections to regression test suite for ecpg. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/22232834c54c315ed57708806c9f8a9b962e2988 Modified Files -- src/interfaces/ecpg/test/expected/preproc-cursor.c | 400

[COMMITTERS] pgsql: In ecpg removed old leftover check for given connection name.

2011-12-18 Thread Michael Meskes
In ecpg removed old leftover check for given connection name. Ever since we introduced real prepared statements this should work for different connections. The old solution just emulating prepared statements, though, wasn't able to handle this. Closes: #6309 Branch -- master Details ---

[COMMITTERS] pgsql: In ecpg removed old leftover check for given connection name.

2011-12-18 Thread Michael Meskes
In ecpg removed old leftover check for given connection name. Ever since we introduced real prepared statements this should work for different connections. The old solution just emulating prepared statements, though, wasn't able to handle this. Closes: #6309 Branch -- REL9_1_STABLE Details

[COMMITTERS] pgsql: Mark variables as const in pgtypeslib if they only carry a forma

2011-12-18 Thread Michael Meskes
Mark variables as const in pgtypeslib if they only carry a format string. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/59e242a4969d2efa6ce68dc7aab3cbd8cf975b08 Modified Files -- src/interfaces/ecpg/include/pgtypes_date.h |4 ++-- src/interfaces

[COMMITTERS] pgsql: Split plpython.c into smaller pieces

2011-12-18 Thread Peter Eisentraut
Split plpython.c into smaller pieces This moves the code around from one huge file into hopefully logical and more manageable modules. For the most part, the code itself was not touched, except: PLy_function_handler and PLy_trigger_handler were renamed to PLy_exec_function and PLy_exec_trigger, b

[COMMITTERS] pgsql: PL/Python: One more file renaming fix to unbreak the build

2011-12-18 Thread Peter Eisentraut
PL/Python: One more file renaming fix to unbreak the build Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/19d223171801dda36f84e24dc89c9fbab1ababad Modified Files -- src/pl/plpython/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --

[COMMITTERS] pgsql: Replace simple constant pg_am.amcanreturn with an AM support fun

2011-12-18 Thread Tom Lane
Replace simple constant pg_am.amcanreturn with an AM support function. The need for this was debated when we put in the index-only-scan feature, but at the time we had no near-term expectation of having AMs that could support such scans for only some indexes; so we kept it simple. However, the SP