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

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
Fixed a bug in cursor reporting.
  • Loading branch information
jgebal committed Dec 13, 2016
commit 3d32d69ce6e569caf56a321639338e28380ee651
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ create or replace type body ut_data_value_refcursor as
begin
if self.datavalue is not null then
ut_assert_processor.set_xml_nls_params();
dbms_xmlgen.restartQuery(self.datavalue);
dbms_xmlgen.setMaxRows(self.datavalue, 100);
l_result := dbms_xmlgen.getxml(self.datavalue);
dbms_xmlgen.restartQuery(self.datavalue);
ut_assert_processor.reset_nls_params();
end if;
return ut_utils.to_string(l_result);
Expand Down