Custom types as parameter in stored function - Mailing list pgsql-general

From mephysto
Subject Custom types as parameter in stored function
Date
Msg-id 1309167207054-4527618.post@n5.nabble.com
Whole thread Raw
Responses Re: Custom types as parameter in stored function
List pgsql-general
Hello to everyone,
I am trying to pass custom types as parameters in stored functions, and I
tried this syntax successfully:

create type myType as (id bigint, name character varying);


create or replace myfunc(obj myType)
returns void as
begin
.......
end;


select myfunc((1, 'foo')::myType;


In this manner, if I understand it, there is a positional assignment of
attribute value: id = 1 and name = foo.
My ask is is there a manner to assing value to attribute of custom type by
name instead by position.

Thanks in advance.

Mephysto.

--
View this message in context:
http://postgresql.1045698.n5.nabble.com/Custom-types-as-parameter-in-stored-function-tp4527618p4527618.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.

pgsql-general by date:

Previous
From: mephysto
Date:
Subject: Re: Custom types as parameter in stored function
Next
From: Leif Biberg Kristensen
Date:
Subject: Re: An amusing MySQL weakness--not!