Re: variadic flag doesn't work with "any" type

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: variadic flag doesn't work with "any" type
Date: 2010-12-10 19:26:06
Message-ID: 27791.1292009166@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> writes:
> 2010/12/9 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:
>> What exactly is the use-case for that?

> I am working on function that can help with record updating. It's
> based on polymorphic types. I would to allow a multiple modification
> per one call - like UPDATE statement does.
> some like:
> record_set_fields(anyelement, key text, value "any" [, key text, value
> "any" [..]]) returns anyelement

OK, makes sense, since you don't want to constrain the values to be all
the same datatype.

> sometimes can be interesting to use a VARIADIC value - so list of
> pairs (key, value) can be created dynamically - (now I don't talk if
> this is good way or not).

That can't work unless you constrain all the values to be text (to match
the column-name parameters), which more or less defeats the entire point
of the function. So I see no interesting use-case for VARIADIC here.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Pavel Stehule 2010-12-10 19:44:48 Re: variadic flag doesn't work with "any" type
Previous Message Pavel Stehule 2010-12-10 07:55:32 Re: variadic flag doesn't work with "any" type