Обсуждение: pgsql: Add to_bin() and to_oct().

Поиск
Список
Период
Сортировка

pgsql: Add to_bin() and to_oct().

От
Nathan Bossart
Дата:
Add to_bin() and to_oct().

This commit introduces functions for converting numbers to their
equivalent binary and octal representations.  Also, the base
conversion code for these functions and to_hex() has been moved to
a common helper function.

Co-authored-by: Eric Radman
Reviewed-by: Ian Barwick, Dag Lem, Vignesh C, Tom Lane, Peter Eisentraut, Kirk Wolak, Vik Fearing, John Naylor, Dean
Rasheed
Discussion: https://postgr.es/m/Y6IyTQQ/TsD5wnsH%40vm3.eradman.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/260a1f18dae8729f99cefe4e1f759193fd6bedd0

Modified Files
--------------
doc/src/sgml/func.sgml                | 59 +++++++++++++++++++++++-
src/backend/utils/adt/varlena.c       | 86 ++++++++++++++++++++++++-----------
src/include/catalog/pg_proc.dat       | 12 +++++
src/test/regress/expected/strings.out | 62 ++++++++++++++++++++++++-
src/test/regress/sql/strings.sql      | 15 +++++-
5 files changed, 204 insertions(+), 30 deletions(-)


Re: pgsql: Add to_bin() and to_oct().

От
David Rowley
Дата:
On Thu, 24 Aug 2023 at 02:50, Nathan Bossart <nathan@postgresql.org> wrote:
>
> Add to_bin() and to_oct().

 src/include/catalog/pg_proc.dat       | 12 +++++

Did this maybe miss a catversion bump?

David