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.

58 lines
2.7 KiB

  1. drop database if exists client_test_db;
  2. DROP SCHEMA test;
  3. CREATE SCHEMA test;
  4. use test;
  5. cluster.binlog_index OK
  6. mysql.columns_priv OK
  7. mysql.db OK
  8. mysql.event OK
  9. mysql.func OK
  10. mysql.general_log
  11. note : The storage engine for the table doesn't support optimize
  12. mysql.help_category OK
  13. mysql.help_keyword OK
  14. mysql.help_relation OK
  15. mysql.help_topic OK
  16. mysql.host OK
  17. mysql.plugin OK
  18. mysql.proc OK
  19. mysql.procs_priv OK
  20. mysql.slow_log
  21. note : The storage engine for the table doesn't support optimize
  22. mysql.tables_priv OK
  23. mysql.time_zone OK
  24. mysql.time_zone_leap_second OK
  25. mysql.time_zone_name OK
  26. mysql.time_zone_transition OK
  27. mysql.time_zone_transition_type OK
  28. mysql.user OK
  29. mysql.columns_priv OK
  30. mysql.db OK
  31. mysql.event OK
  32. mysql.func OK
  33. mysql.general_log
  34. note : The storage engine for the table doesn't support optimize
  35. mysql.help_category OK
  36. mysql.help_keyword OK
  37. mysql.help_relation OK
  38. mysql.help_topic OK
  39. mysql.host OK
  40. mysql.plugin OK
  41. mysql.proc OK
  42. mysql.procs_priv OK
  43. mysql.slow_log
  44. note : The storage engine for the table doesn't support optimize
  45. mysql.tables_priv OK
  46. mysql.time_zone OK
  47. mysql.time_zone_leap_second OK
  48. mysql.time_zone_name OK
  49. mysql.time_zone_transition OK
  50. mysql.time_zone_transition_type OK
  51. mysql.user OK
  52. create table t1 (a int);
  53. create view v1 as select * from t1;
  54. test.t1 OK
  55. test.t1 OK
  56. drop view v1;
  57. drop table t1;
  58. End of 5.0 tests