mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
76f7cdba81
Reduce case and formalise into something we should be able to use in mysql-test-run. Index: ndb-work/mysql-test/t/ndb_bug26793.test ===================================================================
9 lines
284 B
Text
9 lines
284 B
Text
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE `test` (
|
|
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
|
`t` VARCHAR( 10 ) NOT NULL
|
|
) ENGINE = ndbcluster;
|
|
delete from mysql.db where user='';
|
|
flush privileges;
|
|
GRANT USAGE ON *.* TO user1@localhost IDENTIFIED BY 'pass';
|
|
DROP TABLE `test`.`test`;
|