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

Skip to content
Merged
Show file tree
Hide file tree
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
Next Next commit
the fix
  • Loading branch information
Pazus committed May 10, 2019
commit 40c64d6a575e74f25e25771f74727ea17cd9ed10
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_clob_table_buffer.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ create or replace type body ut_output_clob_table_buffer is
select self.output_id, self.last_message_id + rownum, t.column_value, a_item_type
from table(a_text_list) t
where t.column_value is not null or a_item_type is not null;
self.last_message_id := self.last_message_id + a_text_list.count;
self.last_message_id := self.last_message_id + SQL%rowcount;
commit;
end;

Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_table_buffer.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ create or replace type body ut_output_table_buffer is
select self.output_id, self.last_message_id + rownum, t.column_value, a_item_type
from table(a_text_list) t
where t.column_value is not null or a_item_type is not null;
self.last_message_id := self.last_message_id + a_text_list.count;
self.last_message_id := self.last_message_id + SQL%rowcount;
commit;
end;

Expand Down