You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB

  1. call mtr.add_suppression('Error writing file.*errno: 28 ');
  2. create table t1 (a int, b int) engine=memory;
  3. insert t1 select seq, seq+1 from seq_1_to_1000;
  4. set global general_log=0;
  5. set global log_queries_not_using_indexes=1;
  6. SET @saved_dbug = @@SESSION.debug_dbug;
  7. SET debug_dbug='+d,simulate_file_write_error';
  8. select * from t1 where a>10;
  9. select * from t1 where a>10;
  10. select * from t1 where a>10;
  11. select * from t1 where a>10;
  12. select * from t1 where a>10;
  13. select * from t1 where a>10;
  14. select * from t1 where a>10;
  15. select * from t1 where a>10;
  16. select * from t1 where a>10;
  17. select * from t1 where a>10;
  18. select * from t1 where a>10;
  19. select * from t1 where a>10;
  20. select * from t1 where a>10;
  21. select * from t1 where a>10;
  22. select * from t1 where a>10;
  23. select * from t1 where a>10;
  24. select * from t1 where a>10;
  25. select * from t1 where a>10;
  26. select * from t1 where a>10;
  27. select * from t1 where a>10;
  28. select * from t1 where a>10;
  29. select * from t1 where a>10;
  30. select * from t1 where a>10;
  31. select * from t1 where a>10;
  32. select * from t1 where a>10;
  33. select * from t1 where a>10;
  34. select * from t1 where a>10;
  35. select * from t1 where a>10;
  36. select * from t1 where a>10;
  37. select * from t1 where a>10;
  38. select * from t1 where a>10;
  39. select * from t1 where a>10;
  40. select * from t1 where a>10;
  41. select * from t1 where a>10;
  42. select * from t1 where a>10;
  43. select * from t1 where a>10;
  44. select * from t1 where a>10;
  45. select * from t1 where a>10;
  46. select * from t1 where a>10;
  47. select * from t1 where a>10;
  48. select * from t1 where a>10;
  49. select * from t1 where a>10;
  50. select * from t1 where a>10;
  51. select * from t1 where a>10;
  52. select * from t1 where a>10;
  53. select * from t1 where a>10;
  54. select * from t1 where a>10;
  55. select * from t1 where a>10;
  56. select * from t1 where a>10;
  57. select * from t1 where a>10;
  58. SET debug_dbug= @saved_dbug;
  59. set global general_log=1;
  60. set global log_queries_not_using_indexes=default;
  61. drop table t1;