Stored procedure and returning clause

From: Mike Martin <redtux1(at)gmail(dot)com>
To: pgsql-sql <pgsql-sql(at)lists(dot)postgresql(dot)org>
Subject: Stored procedure and returning clause
Date: 2020-08-22 12:52:02
Message-ID: CAOwYNKYMghCSJ0nrGanwzezK17gBJED+_YRYJGik5bvzdfrLTw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi
I am having difficulty with returning clause and stored procedure. This is
an (edited) example of where I am

CREATE OR REPLACE PROCEDURE public.arrcopy1(
dataarr anyarray,
tblname text,
cols text DEFAULT NULL::text,
selstr text DEFAULT NULL::text,
INOUT outarr text[] DEFAULT NULL
)
LANGUAGE 'plpgsql'
AS $BODY$
EXECUTE INSERT INTO tagdata(fileid,tagname,tagvalue) SELECT
arr[1]::integer,arr[2]::text,string_to_array(arr[3],E'\b') FROM
(select array_agg(v order by rn) arr
from unnest($1) with ordinality v(v,rn)
group by (rn - 1) / array_length($1::text[],2)
) a
JOIN tagfile ON fileid=arr[1]::int RETURNING *::text[];

Then called as

EXECUTE insstr INTO outarr USING (dataarr) ;
$BODY$

This compiles as a proc

But I then get an error (this is in perl)

DBD::Pg::db selectall_arrayref failed: ERROR: malformed array literal:
"3182753"
DETAIL: Array value must start with "{" or dimension information

The procedure works perfectly without the INTO Clause on execute

thanks

Browse pgsql-sql by date

  From Date Subject
Next Message John Lumby 2020-08-28 17:43:12 value returned by EXTRACT, date_part
Previous Message Mike Martin 2020-08-16 21:19:50 Re: Weird issue with truncation of values in array with some tables