I want to generate UUID in pl/pgsql and I have written this block of code. I have no error but I cant see the UUID in output and the message does not rais too.
CREATE OR REPLACE FUNCTION generatesurrogat() RETURNS uuid[] AS
$BODY$DECLARE
uid UUID;
BEGIN
uid:=(select uuid_generate_v1());
RAISE NOTICE 'My UUID is',uid;
return uid;
END$BODY$
could you please tell me how can I solve my problem?
returns uuid? And what exactly do you mean with "I can't see the UUID in output" – a_horse_with_no_name Jan 7 at 12:28client_min_messagesset tonotice, see here: postgresql.org/docs/current/static/… (And again: why do you return an array from that function, it makes no sense). – a_horse_with_no_name Jan 7 at 13:38