Here is a simple example:
CREATE TABLE TESTTABLE (
FIELD1 char(1) DEFAULT NULL,
FIELD2 decimal(3,0) DEFAULT NULL
) ENGINE=IBMDB2I;
insert into TESTTABLE (FIELD1, FIELD2) values ('A', 2);
insert into TESTTABLE (FIELD1, FIELD2) values ('A', 2);
update TESTTABLE set FIELD1 = 1;
Error Code: 1031. Storage engine IBMDB2I of the table `mariatest`.`TESTTABLE` doesn't have this option