projects
/
project/drupal.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
46b7b55
)
Issue #845542 by pounard: db_query_temporary() will fail without CREATE TEMPORARY...
author
Gábor Hojtsy
Wed, 23 Nov 2011 10:49:41 +0000 (11:49 +0100)
committer
Gábor Hojtsy
Wed, 23 Nov 2011 10:49:41 +0000 (11:49 +0100)
INSTALL.mysql.txt
patch
|
blob
|
blame
|
history
diff --git
a/INSTALL.mysql.txt
b/INSTALL.mysql.txt
index
5383c72
..
e9013e5
100644
(file)
--- a/
INSTALL.mysql.txt
+++ b/
INSTALL.mysql.txt
@@
-20,8
+20,8
@@
initial database files. Next you must login and set the access database rights:
Again, you will be asked for the 'username' database password. At the MySQL
prompt, enter following command:
- GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
- ON databasename.*
+ GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER,
+ CREATE TEMPORARY TABLES ON databasename.*
TO 'username'@'localhost' IDENTIFIED BY 'password';
where