diff options
author | Nathan Bossart | 2025-03-13 16:20:53 +0000 |
---|---|---|
committer | Nathan Bossart | 2025-03-13 16:20:53 +0000 |
commit | 0697b23906adabccba41fa7bf19909eb98bdf0dd (patch) | |
tree | 5e28e71b6fced7c1b4fc6a9fc2cf33b68923f1e9 /src/include | |
parent | bb25276205b45b60b5a1ddb7db3b66f501a02164 (diff) |
Add reverse(bytea).
This commit introduces a function for reversing the order of the
bytes in binary strings.
Bumps catversion.
Author: Aleksander Alekseev <aleksander@timescale.com>
Discussion: https://postgr.es/m/CAJ7c6TMe0QVRuNssUArbMi0bJJK32%2BzNA3at5m3osrBQ25MHuw%40mail.gmail.com
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catversion.h | 2 | ||||
-rw-r--r-- | src/include/catalog/pg_proc.dat | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 2fa248e4ed4..d52944b1145 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -57,6 +57,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202503111 +#define CATALOG_VERSION_NO 202503131 #endif diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index 42e427f8fe8..890822eaf79 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -1518,6 +1518,9 @@ { oid => '6163', descr => 'number of set bits', proname => 'bit_count', prorettype => 'int8', proargtypes => 'bytea', prosrc => 'bytea_bit_count' }, +{ oid => '8694', descr => 'reverse bytea', + proname => 'reverse', prorettype => 'bytea', proargtypes => 'bytea', + prosrc => 'bytea_reverse' }, { oid => '725', proname => 'dist_pl', prorettype => 'float8', proargtypes => 'point line', |