mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
102 lines
2.9 KiB
Text
102 lines
2.9 KiB
Text
# Author: Horst Hunger
|
|
# Created: 2010-07-06
|
|
|
|
--source include/not_embedded.inc
|
|
--source include/have_partition.inc
|
|
|
|
let $engine_table= MYISAM;
|
|
let $engine_part= MYISAM;
|
|
let $engine_subpart= MYISAM;
|
|
|
|
CREATE USER test2@localhost;
|
|
|
|
--disable_result_log
|
|
--disable_query_log
|
|
--source suite/parts/inc/part_exch_tabs.inc
|
|
--enable_result_log
|
|
--enable_query_log
|
|
|
|
GRANT USAGE ON *.* TO test2@localhost;
|
|
GRANT CREATE, DROP, ALTER, UPDATE, INSERT, SELECT ON test.* TO test2@localhost;
|
|
|
|
--echo connect (test2,localhost,test2,,test,MASTER_MYPORT,MASTER_MYSOCK);
|
|
connect (test2,localhost,test2,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
|
|
USE test;
|
|
SHOW GRANTS FOR CURRENT_USER;
|
|
# 9) Exchanges with different owner.
|
|
# Privilege for ALTER and SELECT
|
|
ALTER TABLE tp EXCHANGE PARTITION p0 WITH TABLE t_10;
|
|
--sorted_result
|
|
SELECT * FROM t_10;
|
|
--sorted_result
|
|
SELECT * FROM tp WHERE a BETWEEN 0 AND 10;
|
|
# Back to former values.
|
|
ALTER TABLE tp EXCHANGE PARTITION p0 WITH TABLE t_10;
|
|
--sorted_result
|
|
SELECT * FROM t_10;
|
|
--sorted_result
|
|
SELECT * FROM tp WHERE a BETWEEN 0 AND 10;
|
|
ALTER TABLE tsp EXCHANGE PARTITION sp00 WITH TABLE tsp_00;
|
|
--sorted_result
|
|
SELECT * FROM tsp_00;
|
|
--sorted_result
|
|
SELECT * FROM tsp WHERE a BETWEEN 0 AND 10;
|
|
# Back to former values.
|
|
ALTER TABLE tsp EXCHANGE PARTITION sp00 WITH TABLE tsp_00;
|
|
--sorted_result
|
|
SELECT * FROM tsp_00;
|
|
--sorted_result
|
|
SELECT * FROM tsp WHERE a BETWEEN 0 AND 10;
|
|
--echo disconnect test2;
|
|
disconnect test2;
|
|
|
|
--echo connection default;
|
|
connection default;
|
|
REVOKE INSERT ON test.* FROM test2@localhost;
|
|
|
|
--echo connect (test2,localhost,test2,,test,MASTER_MYPORT,MASTER_MYSOCK);
|
|
connect (test2,localhost,test2,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
|
|
USE test;
|
|
SHOW GRANTS FOR CURRENT_USER;
|
|
# Privilege for ALTER and SELECT
|
|
--error ER_TABLEACCESS_DENIED_ERROR
|
|
ALTER TABLE tp EXCHANGE PARTITION p0 WITH TABLE t_10;
|
|
--echo disconnect test2;
|
|
disconnect test2;
|
|
|
|
--echo connection default;
|
|
connection default;
|
|
GRANT INSERT ON test.* TO test2@localhost;
|
|
REVOKE CREATE ON test.* FROM test2@localhost;
|
|
|
|
--echo connect (test2,localhost,test2,,test,MASTER_MYPORT,MASTER_MYSOCK);
|
|
connect (test2,localhost,test2,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
|
|
USE test;
|
|
SHOW GRANTS FOR CURRENT_USER;
|
|
--error ER_TABLEACCESS_DENIED_ERROR
|
|
ALTER TABLE tsp EXCHANGE PARTITION sp00 WITH TABLE tsp_00;
|
|
--echo disconnect test2;
|
|
disconnect test2;
|
|
|
|
--echo connection default;
|
|
connection default;
|
|
GRANT CREATE ON test.* TO test2@localhost;
|
|
REVOKE DROP ON test.* FROM test2@localhost;
|
|
|
|
--echo connect (test2,localhost,test2,,test,MASTER_MYPORT,MASTER_MYSOCK);
|
|
connect (test2,localhost,test2,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
|
|
USE test;
|
|
SHOW GRANTS FOR CURRENT_USER;
|
|
# Privilege for ALTER and SELECT
|
|
--error ER_TABLEACCESS_DENIED_ERROR
|
|
ALTER TABLE tp EXCHANGE PARTITION p0 WITH TABLE t_10;
|
|
--echo disconnect test2;
|
|
disconnect test2;
|
|
|
|
--echo connection default;
|
|
connection default;
|
|
|
|
--source suite/parts/inc/part_exch_drop_tabs.inc
|
|
|
|
DROP USER test2@localhost;
|
|
|