| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/share/mysql-test/include/ |
Upload File : |
# # === Name # # binlog_inject_error.inc # # === Description # # Inject binlog write error when running the query, verifies that the # query is ended with the proper error (ER_ERROR_ON_WRITE). # # === Usage # # let query= 'CREATE TABLE t1 (a INT)'; # source include/binlog_inject_error.inc; # --disable_query_log SET @old_debug = @@global.debug; SET GLOBAL debug=CONCAT(IF(LENGTH(@old_debug) > 9, CONCAT(@old_debug, ':'), ''), 'd,injecting_fault_writing'); --enable_query_log --echo $query; --replace_regex /(errno: .*)/(errno: #)/ --error ER_ERROR_ON_WRITE --eval $query --disable_query_log SET GLOBAL debug=@old_debug; --enable_query_log