For many years, I have noticed that rows are sometimes not copied correctly when editing a table.
An example of content that makes problems:
create table TEST_OF_COPY_ROWS
(
id number(4) not null,
text varchar2(200),
changed date default sysdate
)
;
insert into...