mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
af2f9b90fa
Problem: if a user was granted privileges on database "d1", it also was able to act on "D1" (i.e. in upper case), even on Unix with case sensitive file system. Fix: Initialize grant hash to use binary comparison if lower_case_file_system is not set (on most unixes), and case insensitive comparison otherwise (Windows, MacOSX). sql/sql_acl.cc: Initialize hash to use binary comparison with case sensitive FS. mysql-test/include/have_case_sensitive_file_system.inc: New BitKeeper file ``mysql-test/include/have_case_sensitive_file_system.inc'' Backporting from 5.1 mysql-test/r/case_sensitive_file_system.require: New BitKeeper file ``mysql-test/r/case_sensitive_file_system.require'' Backporting from 5.1 mysql-test/r/lowercase_fs_off.result: Adding test case mysql-test/t/lowercase_fs_off.test: Adding test case
27 lines
579 B
Text
27 lines
579 B
Text
#
|
|
# Specific tests for case sensitive file systems
|
|
# i.e. lower_case_filesystem=OFF
|
|
#
|
|
-- source include/have_case_sensitive_file_system.inc
|
|
|
|
connect (master,localhost,root,,);
|
|
connection master;
|
|
create database d1;
|
|
grant all on d1.* to 'sample'@'localhost' identified by 'password';
|
|
flush privileges;
|
|
|
|
connect (sample,localhost,sample,password,d1);
|
|
connection sample;
|
|
select database();
|
|
--error 1044
|
|
create database d2;
|
|
--error 1044
|
|
create database D1;
|
|
disconnect sample;
|
|
|
|
connection master;
|
|
drop database if exists d1;
|
|
disconnect master;
|
|
connection default;
|
|
|
|
# End of 4.1 tests
|