SOURCES: mysql.init - base tables need to be MyISAM

arekm arekm at pld-linux.org
Tue Oct 24 09:50:44 CEST 2006


Author: arekm                        Date: Tue Oct 24 07:50:44 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- base tables need to be MyISAM

---- Files affected:
SOURCES:
   mysql.init (1.104 -> 1.105) 

---- Diffs:

================================================================
Index: SOURCES/mysql.init
diff -u SOURCES/mysql.init:1.104 SOURCES/mysql.init:1.105
--- SOURCES/mysql.init:1.104	Tue Oct 24 09:44:59 2006
+++ SOURCES/mysql.init	Tue Oct 24 09:50:39 2006
@@ -388,7 +388,7 @@
 	  c_d="$c_d   Execute_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
 	  c_d="$c_d PRIMARY KEY Host (Host,Db,User),"
 	  c_d="$c_d KEY User (User)"
-	  c_d="$c_d ) engine=${BASE_TABLETYPE} "
+	  c_d="$c_d ) engine=MyISAM "
 	  c_d="$c_d CHARACTER SET utf8 COLLATE utf8_bin"
 	  c_d="$c_d comment='Database privileges';"
 
@@ -420,7 +420,7 @@
 	  c_h="$c_h  Alter_routine_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
 	  c_h="$c_h  Execute_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
 	  c_h="$c_h  PRIMARY KEY Host (Host,Db)"
-	  c_h="$c_h ) engine=${BASE_TABLETYPE} "
+	  c_h="$c_h ) engine=MyISAM "
 	  c_h="$c_h CHARACTER SET utf8 COLLATE utf8_bin"
 	  c_h="$c_h comment='Host privileges;  Merged with database privileges';"
 	fi
@@ -466,7 +466,7 @@
 	  c_u="$c_u   max_connections int(11) unsigned DEFAULT 0  NOT NULL,"
 	  c_u="$c_u   max_user_connections int(11) unsigned DEFAULT 0  NOT NULL,"
 	  c_u="$c_u   PRIMARY KEY Host (Host,User)"
-	  c_u="$c_u ) engine=${BASE_TABLETYPE} "
+	  c_u="$c_u ) engine=MyISAM "
 	  c_u="$c_u CHARACTER SET utf8 COLLATE utf8_bin"
 	  c_u="$c_u comment='Users and global privileges';"
 
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/mysql.init?r1=1.104&r2=1.105&f=u



More information about the pld-cvs-commit mailing list