--
-- util__computehash_raw/1
--
create or replace function util__computehash_raw(
  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;