Re: Largest & Smallest Functions

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: ken(dot)tanzer(at)gmail(dot)com
Cc: "pgsql-general(at)postgresql(dot)org >> PG-General Mailing List" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Largest & Smallest Functions
Date: 2018-11-08 06:10:09
Message-ID: CAFj8pRBxXEqse2b6AUbWq2DR8g2DkDCF0g=tH2NYJFcEHru4_A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

čt 8. 11. 2018 v 7:02 odesílatel Ken Tanzer <ken(dot)tanzer(at)gmail(dot)com> napsal:

>
>
> On Wed, Nov 7, 2018 at 9:48 PM Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
> wrote:
>
>>
>> You can pass variadic arguments as a array
>>
>> postgres=# \sf smallest
>> CREATE OR REPLACE FUNCTION public.smallest(VARIADIC anyarray)
>> RETURNS anyelement
>> LANGUAGE sql
>> IMMUTABLE
>> AS $function$
>> SELECT min($1[i]) FROM generate_subscripts($1, 1) g(i);
>> $function$
>>
>> postgres=# select smallest(VARIADIC ARRAY[1,2,3]);
>> ┌──────────┐
>> │ smallest │
>> ╞══════════╡
>> │ 1 │
>> └──────────┘
>> (1 row)
>>
>>
> That's very helpful and good to know. It's too bad that doesn't work with
> LEAST/GREATEST, which would eliminate the need for extra functions.
>

These functions are differently implemented - and they are older than
support of variadic functions.But implementation of passing a array should
be easy.

Pavel

> Thanks!
>
> Ken
>
>
> --
> AGENCY Software
> A Free Software data system
> By and for non-profits
> *http://agency-software.org/ <http://agency-software.org/>*
> *https://demo.agency-software.org/client
> <https://demo.agency-software.org/client>*
> ken(dot)tanzer(at)agency-software(dot)org
> (253) 245-3801
>
> Subscribe to the mailing list
> <agency-general-request(at)lists(dot)sourceforge(dot)net?body=subscribe> to
> learn more about AGENCY or
> follow the discussion.
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Andrew Gierth 2018-11-08 06:10:50 Re: Largest & Smallest Functions
Previous Message Ken Tanzer 2018-11-08 06:01:29 Re: Largest & Smallest Functions