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

Skip to content

Commit 40c64d6

Browse files
committed
the fix
1 parent f76670f commit 40c64d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

source/core/output_buffers/ut_output_clob_table_buffer.tpb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ create or replace type body ut_output_clob_table_buffer is
6666
select self.output_id, self.last_message_id + rownum, t.column_value, a_item_type
6767
from table(a_text_list) t
6868
where t.column_value is not null or a_item_type is not null;
69-
self.last_message_id := self.last_message_id + a_text_list.count;
69+
self.last_message_id := self.last_message_id + SQL%rowcount;
7070
commit;
7171
end;
7272

source/core/output_buffers/ut_output_table_buffer.tpb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ create or replace type body ut_output_table_buffer is
7575
select self.output_id, self.last_message_id + rownum, t.column_value, a_item_type
7676
from table(a_text_list) t
7777
where t.column_value is not null or a_item_type is not null;
78-
self.last_message_id := self.last_message_id + a_text_list.count;
78+
self.last_message_id := self.last_message_id + SQL%rowcount;
7979
commit;
8080
end;
8181

0 commit comments

Comments
 (0)