Skip to content
Snippets Groups Projects
Commit f95b0595 authored by Sebastien Ponce's avatar Sebastien Ponce
Browse files

fixed printing of hex numbers when converting them to RAW(4)

parent cb108c22
No related branches found
No related tags found
No related merge requests found
......@@ -348,7 +348,7 @@ END;
/* Small utility function to convert an hexadecimal string (8 digits) into a RAW(4) type */
CREATE OR REPLACE FUNCTION strToRaw4(v VARCHAR2) RETURN RAW IS
BEGIN
RETURN hexToRaw(ltrim(to_char(to_number(v, 'XXXXXXXX'), '0XXXXXXXX')));
RETURN hexToRaw(ltrim(to_char(to_number(v, 'XXXXXXXX'), '0XXXXXXX')));
END;
/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment