Thread: [PATCH] Add reverse(bytea)

[PATCH] Add reverse(bytea)

From
Aleksander Alekseev
Date:
Hi,

The proposed patch adds reverse(bytea) function.

This allows converting between big-endian and little-endian binary
strings, which works nicely with previous commits [1] and [2].

[1]: https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=760162fedb4f
[2]: https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=6da469badaff

-- 
Best regards,
Aleksander Alekseev

Attachment

Re: [PATCH] Add reverse(bytea)

From
Nathan Bossart
Date:
On Mon, Mar 10, 2025 at 10:40:01AM +0300, Aleksander Alekseev wrote:
> The proposed patch adds reverse(bytea) function.

We already have array_reverse() and text_reverse(), so I see no strong
reason against also having a bytea_reverse().

-- 
nathan



Re: [PATCH] Add reverse(bytea)

From
Daniel Gustafsson
Date:
> On 10 Mar 2025, at 22:06, Nathan Bossart <nathandbossart@gmail.com> wrote:
> 
> On Mon, Mar 10, 2025 at 10:40:01AM +0300, Aleksander Alekseev wrote:
>> The proposed patch adds reverse(bytea) function.
> 
> We already have array_reverse() and text_reverse(), so I see no strong
> reason against also having a bytea_reverse().

+1

--
Daniel Gustafsson




Re: [PATCH] Add reverse(bytea)

From
Aleksander Alekseev
Date:
Nathan, Daniel,

> > We already have array_reverse() and text_reverse(), so I see no strong
> > reason against also having a bytea_reverse().
>
> +1

I also considered adding reverse(bit) however to my knowledge there is
no practical usage for it.

-- 
Best regards,
Aleksander Alekseev



Re: [PATCH] Add reverse(bytea)

From
Nathan Bossart
Date:
Here is what I have staged for commit.  The only differences from v1 are
some very light edits.

-- 
nathan

Attachment

Re: [PATCH] Add reverse(bytea)

From
Nathan Bossart
Date:
Committed.

-- 
nathan