From 98bf81df6eb073373238e9061eef742aa91f6c35 Mon Sep 17 00:00:00 2001 From: Joe Conway Date: Sat, 3 Jan 2009 19:57:54 +0000 Subject: [PATCH] Fix bug per Oleksiy Shchukin - 2nd argument for dblink_get_result(text,bool) is PG_GETARG_BOOL(2), should be PG_GETARG_BOOL(1). Apply simple fix to back branches only. More extensive change to be applied to head per Tom's suggestion. --- contrib/dblink/dblink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index 7400ea5672..5d7ebccd24 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -809,7 +809,7 @@ dblink_record_internal(FunctionCallInfo fcinfo, bool is_async, bool do_get) { /* text,bool */ DBLINK_GET_CONN; - fail = PG_GETARG_BOOL(2); + fail = PG_GETARG_BOOL(1); } else if (PG_NARGS() == 1) { -- 2.39.5