summaryrefslogtreecommitdiff
path: root/mysql-test/main/stat_tables-enospc.result
blob: 9ac24a2af999c7a9977f61f13406c0e7df9061f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
call mtr.add_suppression("No space left on device");
create table t1 (a varchar(255), b varchar(255), c varchar(255));
set use_stat_tables=PREFERABLY, optimizer_use_condition_selectivity=3;
SET @saved_dbug = @@SESSION.debug_dbug;
SET debug_dbug='+d,simulate_file_write_error';
set @@max_heap_table_size=128*1024;
analyze table t1;
Table	Op	Msg_type	Msg_text
test.t1	analyze	Error	Error writing file 'tmp-file' (Errcode: 28 "No space left on device")
test.t1	analyze	status	Operation failed
SET debug_dbug= @saved_dbug;
drop table t1;