File tree Expand file tree Collapse file tree
source/core/output_buffers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ create or replace type body ut_output_table_buffer is
6969 l_buffer_data ut_varchar2_rows;
7070 l_already_waited_for number(10,2) := 0;
7171 l_finished boolean := false;
72- lc_init_wait_sec constant naturaln := coalesce(a_initial_timeout, 60 ); -- 1 minute
73- lc_max_wait_sec constant naturaln := coalesce(a_timeout_sec, 60 * 60); -- 1 hour
72+ lc_init_wait_sec constant naturaln := coalesce(a_initial_timeout, 60 * 60 * 4 ); -- 4 hours
73+ lc_max_wait_sec constant naturaln := coalesce(a_timeout_sec, 60 * 60 * 4 ); -- 4 hours
7474 l_wait_for integer := lc_init_wait_sec;
7575 lc_short_sleep_time constant number(1,1) := 0.1; --sleep for 100 ms between checks
7676 lc_long_sleep_time constant number(1) := 1; --sleep for 1 s when waiting long
You can’t perform that action at this time.
0 commit comments