Skip to content

Commit dd8e45a

Browse files
Issue #1969108 by danblack, cs_shadow | Robert S: INSTALL.mysql.txt does not mention CREATE TEMPORARY TABLES and it should.
1 parent 07a910e commit dd8e45a

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

INSTALL.mysql.txt

+9-6
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,21 @@ initial database files. Next you must log in and set the access database rights:
2020
Again, you will be asked for the 'username' database password. At the MySQL
2121
prompt, enter the following command:
2222

23-
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
24-
ON databasename.*
23+
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER,
24+
CREATE TEMPORARY TABLES ON databasename.*
2525
TO 'username'@'localhost' IDENTIFIED BY 'password';
2626

27-
where
27+
where:
2828

2929
'databasename' is the name of your database
30-
'username@localhost' is the username of your MySQL account
30+
'username' is the username of your MySQL account
31+
'localhost' is the web server host where Drupal is installed
3132
'password' is the password required for that username
3233

33-
Note: Unless your database user has all of the privileges listed above, you will
34-
not be able to run Drupal.
34+
Note: Unless the database user/host combination for your Drupal installation
35+
has all of the privileges listed above (except possibly CREATE TEMPORARY TABLES,
36+
which is currently only used by Drupal core automated tests and some
37+
contributed modules), you will not be able to install or run Drupal.
3538

3639
If successful, MySQL will reply with:
3740

0 commit comments

Comments
 (0)