Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dd4d42 commit 01e93e7Copy full SHA for 01e93e7
1 file changed
source/expectations/data_values/ut_data_value_anydata.tpb
@@ -55,9 +55,9 @@ create or replace type body ut_data_value_anydata as
55
begin
56
l_status := l_value.get'||self.compound_type||'(l_data); '||
57
case when self.compound_type = 'collection' then
58
- ' open l_tmp_refcursor for select value(x) as '||get_object_name(a_value)||' from table(l_data) x;'
+ q'[ open l_tmp_refcursor for select value(x) as "]'||get_object_name(a_value)||q'[" from table(l_data) x;]'
59
else
60
- ' open l_tmp_refcursor for select l_data '||get_object_name(self.data_type)||' from dual;'
+ q'[ open l_tmp_refcursor for select l_data as "]'||get_object_name(self.data_type)||q'[" from dual;]'
61
end ||
62
' :l_refcursor := l_tmp_refcursor;
63
end;';
0 commit comments