From ee6d4c2005e30cba545eedf66f1114ef45eeb468 Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Sat, 10 Nov 2007 20:21:48 +0000 Subject: [PATCH] relnotes for 2.0.3 --- Makefile | 2 +- NEWS | 27 +++++++++++++++++++++++++++ doc/todo.txt | 7 ++----- 3 files changed, 30 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index fa1ea9a..9a9dd0f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # PL/Proxy version -PLPROXY_VERSION = 2.0.3 +PLPROXY_VERSION = 2.0.3rc1 # libpq config PQINC = $(shell pg_config --includedir) diff --git a/NEWS b/NEWS index 96d0f26..fa1518d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,30 @@ +2007-11-xx - PlProxy 2.0.3 - "Faster Than A Fresh Zombie" + + = Features = + + * Explicitly specify result column names and types in query. + + Lets say there is function somefunc(out id int4, out data text). + Previously pl/proxy issued following query: + + SELECT * FROM somefunc() + + And later tried to work out which column goes where. Now it issues: + + SELECT id::int4, data::text from somefunc() + + + + * Quote function and result column names properly. + * Set client_encoding on remote database to be equal to local one. + * Now setting 'statement_timeout' from plproxy.works, but + + = Fixes = + + * Support 8.3 (short varlena header) + * Support old flex (2.5.4) + * Fix 'make deb' + 2007-04-16 - PlProxy 2.0.2 - "No news is good news?" * Include plproxy.sql.in in tgz. diff --git a/doc/todo.txt b/doc/todo.txt index 071fc41..a281dc4 100644 --- a/doc/todo.txt +++ b/doc/todo.txt @@ -10,11 +10,8 @@ * client_encoding: before sending query, sync if needed * client_encoding: the warning is not necessary anymore * support both older (2.5.4) and newer (2.5.33) flex - -=== todo === - - * error handling with old flex - * testing + * quoting for function name and result columns + * fetch columns explicitly == Needs to be checked == -- 2.39.5