pgsql: Fixed array handling in ecpg.

From: Michael Meskes <meskes(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fixed array handling in ecpg.
Date: 2015-02-10 11:04:31
Message-ID: E1YL8cJ-000124-Hn@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fixed array handling in ecpg.

When ecpg was rewritten to the new protocol version not all variable types
were corrected. This patch rewrites the code for these types to fix that. It
also fixes the documentation to correctly tell the status of array handling.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/1f393fc923ec77f25fd37e16fd8ccb480df82ebb

Modified Files
--------------
doc/src/sgml/ecpg.sgml | 11 +-
src/interfaces/ecpg/ecpglib/data.c | 63 +++--
src/interfaces/ecpg/ecpglib/execute.c | 280 ++++++++------------
src/interfaces/ecpg/test/expected/sql-array.c | 180 +++++++++----
src/interfaces/ecpg/test/expected/sql-array.stderr | 124 ++++++---
src/interfaces/ecpg/test/expected/sql-array.stdout | 20 +-
src/interfaces/ecpg/test/expected/sql-oldexec.c | 109 ++++----
.../ecpg/test/expected/sql-oldexec.stderr | 144 +++++-----
src/interfaces/ecpg/test/sql/array.pgc | 50 +++-
src/interfaces/ecpg/test/sql/oldexec.pgc | 5 +-
10 files changed, 533 insertions(+), 453 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-02-11 01:37:54 pgsql: Fix GEQO to not assume its join order heuristic always works.
Previous Message Heikki Linnakangas 2015-02-10 09:06:34 pgsql: Speed up CRC calculation using slicing-by-8 algorithm.