Hi, developers!
I've noticed I can't use in-place data editor with index-organized tables.
Test case:
create table test_table (
a number(10) not null,
b number(10) not null,
constraint tt_PK primary key (a,b)
) organization index; -- non-IOTs work fine!
insert into test_table values...