public inbox for [email protected]
help / color / mirror / Atom feedFrom: Magnus Falch <[email protected]>
To: [email protected]
Subject: Edit wiki
Date: Wed, 13 Mar 2024 14:05:02 +0100
Message-ID: <CAODrA7qNoX7QqBNO_OfobjULLhNanjvZyco0wNOn7xELuY=VBw@mail.gmail.com> (raw)
I would like editor access to the wiki,
my username is [email protected] and I would like to modify the
array_reverse snippets to add this one:
CREATE OR REPLACE FUNCTION array_reverse_custom(input anyarray)
RETURNS anyarray
language sql
returns null on null input
parallel safe
immutable
AS $$
select array_agg(val order by pos desc) from
unnest(input) with ordinality as elem(val,pos);
$$;
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected]
Subject: Re: Edit wiki
In-Reply-To: <CAODrA7qNoX7QqBNO_OfobjULLhNanjvZyco0wNOn7xELuY=VBw@mail.gmail.com>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox