Skip to content

Commit

Permalink
Merge pull request #1112 from utPLSQL/feature/issue-1111-oracle-21c
Browse files Browse the repository at this point in the history
Add Support for Oracle Database 21c
  • Loading branch information
jgebal committed Dec 9, 2020
2 parents 7eeae39 + 7812a8a commit abfa190
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file modified .travis/push_docs_to_github_io.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion source/reporters/ut_coverage_report_html_helper.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ create or replace package body ut_coverage_report_html_helper is

function object_id(a_object_full_name varchar2) return varchar2 is
begin
return rawtohex(utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5(input_string => a_object_full_name)));
return rawtohex(dbms_crypto.hash(src => utl_raw.cast_to_raw(a_object_full_name), typ => dbms_crypto.hash_md5));
end;

function link_to_source_file(a_object_full_name varchar2) return varchar2 is
Expand Down

0 comments on commit abfa190

Please sign in to comment.