mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
10 lines
284 B
Text
10 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`;
|