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.

28 lines
614 B

  1. #
  2. # Specific tests for case sensitive file systems
  3. # i.e. lower_case_filesystem=OFF
  4. #
  5. -- source include/have_case_sensitive_file_system.inc
  6. -- source include/not_embedded.inc
  7. connect (master,localhost,root,,);
  8. connection master;
  9. create database d1;
  10. grant all on d1.* to 'sample'@'localhost' identified by 'password';
  11. flush privileges;
  12. connect (sample,localhost,sample,password,d1);
  13. connection sample;
  14. select database();
  15. --error 1044
  16. create database d2;
  17. --error 1044
  18. create database D1;
  19. disconnect sample;
  20. connection master;
  21. drop database if exists d1;
  22. disconnect master;
  23. connection default;
  24. # End of 4.1 tests