Re: Creating variable argument user defined functions in C

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: athinivas <athinivas(at)gmail(dot)com>
Cc: pgsql-docs(at)postgresql(dot)org
Subject: Re: Creating variable argument user defined functions in C
Date: 2017-09-18 13:41:58
Message-ID: 8945.1505742118@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

athinivas <athinivas(at)gmail(dot)com> writes:
> For my project, I need to create a variable argument function which accepts
> multiple strings & returns some transformed string. I've gone through the
> https://www.postgresql.org/docs/9.6/static/xfunc-c.html doc..But there's no
> clear documentation for variable args.

For ordinary array types the VARIADIC marking makes no difference so far
as the function is concerned; you just treat the last argument as a normal
array. If you want to do VARIADIC ANY then the rules are different, since
the arguments aren't necessarily all the same type and so can't be folded
into an array.

> I'able to understand we can have ArrayType as data type for same. But how to
> iterate & process it??? Kindly help.

There's plenty of examples in the core code. For the normal-array
case look at anything that takes an array, e.g. json_extract_path.
For VARIADIC ANY you might look at concat() or format().

regards, tom lane

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Peter Eisentraut 2017-09-18 13:57:02 Re: Docbook 5.x
Previous Message athinivas 2017-09-18 07:52:27 Creating variable argument user defined functions in C