summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb/r/skip_core_dump_on_error.result
blob: 60d9f69a3981ab9130e354fa0adb18c32419c8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
create table mz(c int);
affected rows: 0
insert into mz values(1);
affected rows: 1
commit;
affected rows: 0
SET debug= '+d,abort_with_io_write_error';
affected rows: 0
set global binlog_error_action=1;
affected rows: 0
show session variables like 'debug';
Variable_name	Value
debug	d,abort_with_io_write_error
affected rows: 1
show global variables like 'binlog_error_action';
Variable_name	Value
binlog_error_action	ABORT_SERVER
affected rows: 1
show global variables like 'skip_core_dump_on_error';
Variable_name	Value
skip_core_dump_on_error	ON
affected rows: 1
# crash_during_update
update mz set c=13;
ERROR HY000: Binary logging not possible. Message: An error occurred during sync stage of the commit. 'binlog_error_action' is set to 'ABORT_SERVER'. Hence aborting the server.
# server aborted
Pattern "mysqld got signal 6" found
# but no core written
Pattern "Writing a core file" not found
drop table mz;
affected rows: 0