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

Skip to content

Commit 13e9c55

Browse files
committed
Removed SELECT statement that was no longer needed.
1 parent 1b8f3c8 commit 13e9c55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/core/types/ut_output_dbms_pipe.tpb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ create or replace type body ut_output_dbms_pipe as
5959
--get message as a clob data and recieve information if the message is ended, timed out or it is the end of transmission
6060
l_result_flag := ut_output_pipe_helper.get_message(a_output_id, a_timeout_sec, l_text);
6161
-- 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));
62+
l_results_tab := ut_utils.clob_to_table(l_text, c_max_line_length);
6363
--pipe results one by one
6464
for i in 1 .. l_results_tab.count loop
6565
pipe row( l_results_tab(i) );

0 commit comments

Comments
 (0)