pgsql: Add to_bin() and to_oct().

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add to_bin() and to_oct().
Date: 2023-08-23 14:50:46
Message-ID: E1qYpC1-000Uk7-KZ@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2023-08-23 15:13:03 pgsql: Fix _bt_allequalimage() call within critical section.
Previous Message Heikki Linnakangas 2023-08-23 14:37:03 pgsql: Use the buffer cache when initializing an unlogged index.