From: Frederik D. <fre...@da...> - 2006-11-29 14:10:11
|
On Wednesday 29 November 2006 14:19, Frederik Dannemare wrote: [ snip ] > Debian package changelog: Just made yet another changelog entry: mysqlfs (0.3.1-7) unstable; urgency=low * Add the keyword PRIMARY to line 67 in schema.sql, otherwise MySQL 5.1.11beta-1 will complain during table creation (but only when the NDB Cluster storage engine is used, it seems - MyISAM doesn't complain). See http://bugs.mysql.com/bug.php?id=6546 for related info. -- Frederik Dannemare <fre...@da...> Wed, 29 Nov 2006 14:30:52 +0100 Ergo, a small diff: --- mysqlfs-0.3.1.orig/schema.sql +++ mysqlfs-0.3.1/schema.sql @@ -64,7 +64,7 @@ `parent` int(10) unsigned default NULL, `name` varchar(255) NOT NULL, UNIQUE KEY `name` (`name`,`parent`), - KEY `inode` (`inode`), + PRIMARY KEY `inode` (`inode`), KEY `parent` (`parent`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; B/R, Frederik Dannemare |