--
-- rawtohex/1
--
create or replace function rawtohex(
  text
) returns text as $$

declare
        arg     alias for $1;
begin
        raise exception 'not implemented yet: depends on java code in acs classic';
        return '';
end;$$ language plpgsql;