[COMMITTERS] pgsql: Add handling for GatherPath to print_path.

2015-12-02 Thread Robert Haas
Add handling for GatherPath to print_path. Peter Geoghegan Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c7485a82c3e29103757db75bb9ff8dac597387dc Modified Files -- src/backend/optimizer/path/allpaths.c |4 1 file changed, 4 insertions(+) --

[COMMITTERS] pgsql: Refactor Perl test code

2015-12-02 Thread Alvaro Herrera
Refactor Perl test code The original code was a bit clunky; make it more amenable for further reuse by creating a new Perl package PostgresNode, which is an object-oriented representation of a single server, with some support routines such as init, start, stop, psql. This serves as a better basis

[COMMITTERS] pgsql: Fix behavior of printTable() and friends with externally-invoked

2015-12-02 Thread Tom Lane
Fix behavior of printTable() and friends with externally-invoked pager. The formatting modes that depend on knowledge of the terminal window width did not work right when printing a query result that's been fetched in sections (as a result of FETCH_SIZE). ExecQueryUsingCursor() would force use of

[COMMITTERS] pgsql: Fix behavior of printTable() and friends with externally-invoked

2015-12-02 Thread Tom Lane
Fix behavior of printTable() and friends with externally-invoked pager. The formatting modes that depend on knowledge of the terminal window width did not work right when printing a query result that's been fetched in sections (as a result of FETCH_SIZE). ExecQueryUsingCursor() would force use of

Re: [COMMITTERS] pgsql: Refactor Perl test code

2015-12-02 Thread Tom Lane
Alvaro Herrera writes: > Refactor Perl test code This has broken "make check-world" for me (on RHEL 6.7): make -C src/bin check make[1]: Entering directory `/home/postgres/pgsql/src/bin' make -C initdb check make[2]: Entering directory `/home/postgres/pgsql/src/bin/initdb' rm -rf /home/postgres/

Re: [COMMITTERS] pgsql: Refactor Perl test code

2015-12-02 Thread Michael Paquier
On Thu, Dec 3, 2015 at 8:38 AM, Tom Lane wrote: > Test Summary Report > --- > t/001_initdb.pl (Wstat: 6400 Tests: 8 Failed: 0) > Non-zero exit status: 25 > Parse errors: Bad plan. You planned 14 tests but ran 8. > Files=1, Tests=8, 0 wallclock secs ( 0.02 usr 0.00 sys + 0.08

[COMMITTERS] pgsql: Fix broken subroutine call in TestLib

2015-12-02 Thread Alvaro Herrera
Fix broken subroutine call in TestLib Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/a2983cfd9d64d352c68431010b2525daf2b8bc79 Modified Files -- src/test/perl/TestLib.pm |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent v

Re: [COMMITTERS] pgsql: Refactor Perl test code

2015-12-02 Thread Alvaro Herrera
Michael Paquier wrote: > Or in more details: > Undefined subroutine &TestLib::run called at > /Users/mpaquier/git/postgres/src/bin/initdb/../../../src/test/perl/TestLib.pm > line 146. > I am seeing the same failure on all the machines in the buildfarm. > > The issue is fixed by the patch attached

Re: [COMMITTERS] pgsql: Refactor Perl test code

2015-12-02 Thread Tom Lane
Alvaro Herrera writes: > Michael Paquier wrote: >> The issue is fixed by the patch attached. This has been visibly >> forgotten in the version pushed. > Yeah. Pushed. "make check-world" passes again here. Thanks. regards, tom lane -- Sent via pgsql-committers mailin