Created
January 23, 2023 19:20
-
-
Save joelonsql/f54552db1f0fd6d9b3397d255e51f58a to your computer and use it in GitHub Desktop.
Function to convert non-negative integer represented as a byte array in big-endian order to numeric
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE OR REPLACE FUNCTION numeric_from_bytes(bytea) | |
RETURNS numeric | |
LANGUAGE plpgsql | |
AS $$ | |
declare | |
bits bit varying; | |
result numeric := 0; | |
exponent numeric := 0; | |
bit_pos integer; | |
begin | |
execute 'SELECT x' || quote_literal(substr($1::text,3)) into bits; | |
bit_pos := length(bits) + 1; | |
exponent := 0; | |
while bit_pos >= 56 loop | |
bit_pos := bit_pos - 56; | |
result := result + substring(bits from bit_pos for 56)::bigint::numeric * pow(2::numeric, exponent); | |
exponent := exponent + 56; | |
end loop; | |
while bit_pos >= 8 loop | |
bit_pos := bit_pos - 8; | |
result := result + substring(bits from bit_pos for 8)::bigint::numeric * pow(2::numeric, exponent); | |
exponent := exponent + 8; | |
end loop; | |
return trunc(result); | |
end; | |
$$; | |
/* | |
In a future PostgreSQL version, when/if Dean Rasheed's patch 0001-Add-non-decimal-integer-support-to-type-numeric.patch gets committed, this can be simplified: | |
CREATE OR REPLACE FUNCTION numeric_from_bytes(bytea) | |
RETURNS numeric | |
LANGUAGE sql | |
AS $$ | |
SELECT ('0'||right($1::text,-1))::numeric | |
$$; | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment