From 1653a022f73b13049d19d3a30a784e0da2d83fb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=CC=81bor=20Hojtsy?= Date: Wed, 23 Nov 2011 11:49:41 +0100 Subject: [PATCH] Issue #845542 by pounard: db_query_temporary() will fail without CREATE TEMPORARY TABLES permission on MySQL, update install documentation for that --- INSTALL.mysql.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.mysql.txt b/INSTALL.mysql.txt index 5383c72a4eb..e9013e55c57 100644 --- 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