Small bug in function declaration sql generator

From: Nikolai Zhubr <n-a-zhubr(at)yandex(dot)ru>
To: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Small bug in function declaration sql generator
Date: 2015-10-11 18:32:42
Message-ID: 561AAB4A.4090709@yandex.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hello all,

I've found some issue with function declaration sql generator
apparently. In the example below (just pasted this from SQL pane now),
it obviously generated one excessive 'SETOF' keyword.

CREATE OR REPLACE FUNCTION util_csv2table(
IN arg_src_str text,
OUT par_name character varying,
OUT par_value character varying,
OUT par_quoted boolean)
RETURNS SETOF SETOF record AS

I'll look into it tomorrow night and create a patch hopefully (unless
someone fixes it in the mean time)

Thank you,
Nikolai

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Susan Douglas 2015-10-11 21:40:09 Documentation Patch for Auto-Commit Feature (query.rst)
Previous Message Szabolcs Hubai 2015-10-10 18:45:22 Re: [PATCH] Beautify line-ends handling yet more.