⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 grant2.test

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TEST
📖 第 1 页 / 共 2 页
字号:
# Grant tests not performed with embedded server-- source include/not_embedded.incSET NAMES binary;## GRANT tests that require several connections# (usually it's GRANT, reconnect as another user, try something)## prepare playground before tests--disable_warningsdrop database if exists mysqltest;drop database if exists mysqltest_1;--enable_warningsdelete from mysql.user where user like 'mysqltest\_%';delete from mysql.db where user like 'mysqltest\_%';delete from mysql.tables_priv where user like 'mysqltest\_%';delete from mysql.columns_priv where user like 'mysqltest\_%';flush privileges;grant all privileges on `my\_1`.* to mysqltest_1@localhost with grant option;grant create user on *.* to mysqltest_1@localhost;create user mysqltest_2@localhost;connect (user_a,localhost,mysqltest_1,,);connection user_a;grant select on `my\_1`.* to mysqltest_2@localhost;--error 1132grant select on `my\_1`.* to mysqltest_2@localhost identified by 'pass';disconnect user_a;connection default;grant update on mysql.* to mysqltest_1@localhost;connect (user_b,localhost,mysqltest_1,,);connection user_b;grant select on `my\_1`.* to mysqltest_2@localhost identified by 'pass';grant select on `my\_1`.* to mysqltest_3@localhost;disconnect user_b;connection default;grant insert on mysql.* to mysqltest_1@localhost;connect (user_c,localhost,mysqltest_1,,);connection user_c;grant select on `my\_1`.* to mysqltest_3@localhost;grant select on `my\_1`.* to mysqltest_4@localhost identified by 'pass';disconnect user_c;connection default;delete from mysql.user where user like 'mysqltest\_%';delete from mysql.db where user like 'mysqltest\_%';delete from mysql.tables_priv where user like 'mysqltest\_%';delete from mysql.columns_priv where user like 'mysqltest\_%';flush privileges;## wild_compare fun#grant all privileges on `my\_%`.* to mysqltest_1@localhost with grant option;grant create user on *.* to mysqltest_1@localhost;connect (user1,localhost,mysqltest_1,,);connection user1;select current_user();grant all privileges on `my\_1`.* to mysqltest_2@localhost with grant option;--error 1044grant all privileges on `my_%`.* to mysqltest_3@localhost with grant option;## NO_AUTO_CREATE_USER mode#set @@sql_mode='NO_AUTO_CREATE_USER';select @@sql_mode;## GRANT without IDENTIFIED BY does not create new users#--error 1133grant select on `my\_1`.* to mysqltest_4@localhost with grant option;grant select on `my\_1`.* to mysqltest_4@localhost identified by 'mypass'with grant option;disconnect user1;connection default;show grants for mysqltest_1@localhost;show grants for mysqltest_2@localhost;--error 1141show grants for mysqltest_3@localhost;delete from mysql.user where user like 'mysqltest\_%';delete from mysql.db where user like 'mysqltest\_%';flush privileges;## wild_compare part two - acl_cache#create database mysqltest_1;grant all privileges on `mysqltest\_1`.* to mysqltest_1@localhost with grant option;connect (user2,localhost,mysqltest_1,,);connection user2;select current_user();show databases;--error 1044grant all privileges on `mysqltest_1`.* to mysqltest_1@localhost with grant option;disconnect user2;connection default;show grants for mysqltest_1@localhost;delete from mysql.user where user like 'mysqltest\_%';delete from mysql.db where user like 'mysqltest\_%';drop database mysqltest_1;flush privileges;## Bug #6173: One can circumvent missing UPDATE privilege if he has SELECT# and INSERT privilege for table with primary key#create database mysqltest;grant INSERT, SELECT on mysqltest.* to mysqltest_1@localhost;flush privileges;use mysqltest;create table t1 (id int primary key, data varchar(255));connect (mrbad, localhost, mysqltest_1,,mysqltest);connection mrbad;show grants for current_user();insert into t1 values (1, 'I can''t change it!');--error 1142update t1 set data='I can change it!' where id = 1;# This should not be allowed since it too require UPDATE privilege.--error 1142insert into t1 values (1, 'XXX') on duplicate key update data= 'I can change it!';select * from t1;disconnect mrbad;connection default;drop table t1;delete from mysql.user where user like 'mysqltest\_%';delete from mysql.db where user like 'mysqltest\_%';flush privileges;##create table t1 (a int, b int);grant select (a) on t1 to mysqltest_1@localhost with grant option;connect (mrugly, localhost, mysqltest_1,,mysqltest);connection mrugly;--error 1143grant select (a,b) on t1 to mysqltest_2@localhost;--error 1142grant select on t1 to mysqltest_3@localhost;disconnect mrugly;connection default;drop table t1;delete from mysql.user where user like 'mysqltest\_%';delete from mysql.db where user like 'mysqltest\_%';delete from mysql.tables_priv where user like 'mysqltest\_%';delete from mysql.columns_priv where user like 'mysqltest\_%';flush privileges;drop database mysqltest;use test;## Bug #15775: "drop user" command does not refresh acl_check_hosts## Create some test userscreate user mysqltest_1@host1;create user mysqltest_2@host2;create user mysqltest_3@host3;create user mysqltest_4@host4;create user mysqltest_5@host5;create user mysqltest_6@host6;create user mysqltest_7@host7;flush privileges;# Drop one userdrop user mysqltest_3@host3;# This connect failed before fix since the acl_check_hosts list was corrupted by the "drop user"connect (con8,127.0.0.1,root,,test,$MASTER_MYPORT,);disconnect con8;connection default;# Clean up - Drop all of the remaining users at oncedrop user mysqltest_1@host1, mysqltest_2@host2, mysqltest_4@host4,  mysqltest_5@host5, mysqltest_6@host6, mysqltest_7@host7;# Check that it's still possible to connectconnect (con9,127.0.0.1,root,,test,$MASTER_MYPORT,);disconnect con9;connection default;## Create and drop user#set sql_mode='maxdb';--disable_warningsdrop table if exists t1, t2;--enable_warningscreate table t1(c1 int);create table t2(c1 int, c2 int);## Three forms of CREATE USERcreate user 'mysqltest_1';--error 1396create user 'mysqltest_1';create user 'mysqltest_2' identified by 'Mysqltest-2';create user 'mysqltest_3' identified by password 'fffffffffffffffffffffffffffffffffffffffff';grant select on *.* to 'mysqltest_2';grant insert on test.* to 'mysqltest_2';grant update on test.t1 to 'mysqltest_2';grant update (c2) on test.t2 to 'mysqltest_2';select host,user,password from mysql.user where user like 'mysqltest_%' order by host,user,password;select host,db,user from mysql.db where user like 'mysqltest_%' order by host,db,user;select host,db,user,table_name from mysql.tables_priv where user like 'mysqltest_%' order by host,db,user,table_name;select host,db,user,table_name,column_name from mysql.columns_priv where user like 'mysqltest_%' order by host,db,user,table_name,column_name;show grants for 'mysqltest_1';show grants for 'mysqltest_2';## Dropdrop user 'mysqltest_1';select host,user,password from mysql.user where user like 'mysqltest_%' order by host,user,password;select host,db,user from mysql.db where user like 'mysqltest_%' order by host,db,user;select host,db,user,table_name from mysql.tables_priv where user like 'mysqltest_%' order by host,db,user,table_name;select host,db,user,table_name,column_name from mysql.columns_priv where user like 'mysqltest_%' order by host,db,user,table_name,column_name;--error 1141show grants for 'mysqltest_1';## Renamerename user 'mysqltest_2' to 'mysqltest_1';select host,user,password from mysql.user where user like 'mysqltest_%' order by host,user,password;select host,db,user from mysql.db where user like 'mysqltest_%' order by host,db,user;select host,db,user,table_name from mysql.tables_priv where user like 'mysqltest_%' order by host,db,user,table_name;select host,db,user,table_name,column_name from mysql.columns_priv where user like 'mysqltest_%' order by host,db,user,table_name,column_name;show grants for 'mysqltest_1';drop user 'mysqltest_1', 'mysqltest_3';--error 1396

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -