multi_statement.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # PS doesn't support multi-statements
  2. --disable_ps_protocol
  3. select 1;
  4. delimiter ||||;
  5. select 2;
  6. select 3;
  7. select 4||||
  8. delimiter 'abcd'||||
  9. select 5;
  10. select 6;
  11. select 50, 'abc';'abcd'
  12. select "abcd'";'abcd'select "'abcd";'abcd'
  13. select 5'abcd'
  14. delimiter ;'abcd'
  15. select 'finish';
  16. # Bug #8475: Make sure every statement that is a slow query in
  17. # a multi-statement query gets logged as a slow query.
  18. flush status;
  19. delimiter ||||;
  20. create table t1 (i int);
  21. insert into t1 values (1);
  22. select * from t1 where i = 1;
  23. insert into t1 values (2),(3),(4);
  24. select * from t1 where i = 2;
  25. select * from t1 where i = 3||||
  26. show status like 'Slow_queries'||||
  27. drop table t1||||
  28. delimiter ;||||
  29. # End of 4.1 tests