polardbxengine/mysql-test/suite/ndb/r/ndb_full_data_memory.result

10 lines
266 B
Plaintext

call mtr.add_suppression("The table 't1' is full");
create table t1(x int primary key, y int) engine=ndbcluster;
insert into t1 values (0, 0);
alter table t1 algorithm=inplace, add unique key (y);
ERROR HY000: The table 't1' is full
delete from t1;
drop table t1;