From 559c0fd31ef09659e54a1a2111f815ae96970727 Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Wed, 2 Feb 2011 14:46:21 +0200 Subject: [PATCH] v2.2rc1 --- AUTHORS | 1 + Makefile | 2 +- NEWS | 27 +++++++++++++++++++++++++++ doc/syntax.txt | 2 +- 4 files changed, 30 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 3013130..23401c0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -14,6 +14,7 @@ Marko Kreen Contributors ------------ David E. Wheeler +Hans-Jürgen Schönig Hiroshi Saito Ian Sollars João Matos diff --git a/Makefile b/Makefile index 8890abd..02942dd 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # PL/Proxy version -PLPROXY_VERSION = 2.1 +PLPROXY_VERSION = 2.2rc1 # set to 1 to disallow functions containing SELECT NO_SELECT = 0 diff --git a/NEWS b/NEWS index 6da1cfa..ceecb55 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,30 @@ +2011-xx-xx - PlProxy 2.2 - "" + + = Features = + + * New TARGET statement to specify different function to call + on remote side. + + * Make possible to compile out support for SELECT statement: + + $ make all NO_SELECT=1 + + = Fixes = + + * Fix returning of many-column (>100) result rows. Old code assumed + FUNC_MAX_ARGS is max, but that does not apply to result columns. + (Hans-Jürgen Schönig) + + * Survive missing sqlstate field on error messages. + Local libpq errors do not set it. + + * More portable workaround for empty FLEX/BISON. + (Peter Eisentraut) + + * win32: Fix poll compat to work with large amount of fds. + Old compat assument bitmap representation for fd_set, + but win32 uses array. + 2010-04-23 - PlProxy 2.1 - "Quality Horrorshow" = Features = diff --git a/doc/syntax.txt b/doc/syntax.txt index 1b06c55..0ea5e1b 100644 --- a/doc/syntax.txt +++ b/doc/syntax.txt @@ -133,7 +133,7 @@ And target partitions get queries: == TARGET == Specify function name on remote side to be called. By default -PL/Proxy uses current function name. +PL/Proxy uses current function name. _(New in 2.2)_ Following function: -- 2.39.5