There was an error while loading. Please reload this page.
1 parent 14c944d commit e63c024Copy full SHA for e63c024
Tests/MySql.Data.Tests/Properties/Setup.sql
@@ -1,12 +1,11 @@
1
DROP DATABASE IF EXISTS `[database0]`; CREATE DATABASE `[database0]`;
2
CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';
3
CREATE USER 'test'@'%' IDENTIFIED BY 'test';
4
-GRANT ALL ON `[database0]`.* to 'test'@'localhost';
5
-GRANT ALL ON `[database0]`.* to 'test'@'%';
6
7
DROP DATABASE IF EXISTS `[database1]`; CREATE DATABASE `[database1]`;
8
-GRANT ALL ON `[database1]`.* to 'test'@'localhost';
9
-GRANT ALL ON `[database1]`.* to 'test'@'%';
+
+GRANT ALL ON *.* to 'test'@'localhost';
+GRANT ALL ON *.* to 'test'@'%';
10
11
FLUSH PRIVILEGES;
12
0 commit comments