Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removing comment line that keeps getting updated with update_project_…
…version action
  • Loading branch information
jgebal committed Feb 7, 2022
commit 9912dfac23a1d3d964e11ae7102fd30fecd4652c
4 changes: 2 additions & 2 deletions source/core/ut_utils.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -787,9 +787,9 @@ create or replace package body ut_utils is

/**
* Change string into unicode to match xmlgen format _00<unicode>_
* See the section of Oracle documentation called: Escape of Characters in Generated XML Data
* https://docs.oracle.com/en/database/oracle/oracle-database/12.2/adxdb/generation-of-XML-data-from-relational-data.html#GUID-5BE09A7D-80D8-4734-B9AF-4A61F27FA9B2
* secion v3.1.12.3796-develop
*/
*/
function char_to_xmlgen_unicode(a_character varchar2) return varchar2 is
begin
return '_x00'||rawtohex(utl_raw.cast_to_raw(a_character))||'_';
Expand Down