Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b2e914f

Browse files
committed
Update comment
1 parent a32e09d commit b2e914f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/core/ut_utils.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ create or replace package body ut_utils is
895895
and (l_escaped_text_start < l_comment_start or l_comment_start = 0) and (l_escaped_text_start < l_text_start or l_text_start = 0)
896896
then
897897
--translate char "[" from the start of quoted text "q'[someting]'" into "]"
898-
l_escaped_text_end_char := translate( substr(a_source, l_escaped_text_start + 2, 1), '[{(<', ']})>');
898+
l_escaped_text_end_char := translate(substr(a_source, l_escaped_text_start + 2, 1),l_open_chars,l_close_chars);
899899
l_end := instr(a_source,l_escaped_text_end_char||'''',l_escaped_text_start + 3 );
900900
if l_end > 0 then
901901
l_end := l_end + 2;

0 commit comments

Comments
 (0)