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 1b8f3c8 commit 13e9c55Copy full SHA for 13e9c55
1 file changed
source/core/types/ut_output_dbms_pipe.tpb
@@ -59,7 +59,7 @@ create or replace type body ut_output_dbms_pipe as
59
--get message as a clob data and recieve information if the message is ended, timed out or it is the end of transmission
60
l_result_flag := ut_output_pipe_helper.get_message(a_output_id, a_timeout_sec, l_text);
61
-- convert message into collection of varchar2(4000) for SQL processing
62
- select column_value bulk collect into l_results_tab from table( ut_utils.clob_to_table(l_text, c_max_line_length));
+ l_results_tab := ut_utils.clob_to_table(l_text, c_max_line_length);
63
--pipe results one by one
64
for i in 1 .. l_results_tab.count loop
65
pipe row( l_results_tab(i) );
0 commit comments