]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fulltext indexes are supported in InnoDB since MariaDB 10.0.15
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 21 Jun 2017 23:37:43 +0000 (01:37 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 21 Jun 2017 23:37:43 +0000 (01:37 +0200)
lib/mysqlschema.php

index 9081c0e57807a479fbb1d20ff4c7edd6accdba83..30c808ab3d83981395dcb94610645b251f545c4e 100644 (file)
@@ -265,8 +265,6 @@ class MysqlSchema extends Schema
      * @param array $def
      * @return string;
      *
-     * @fixme ENGINE may need to be set differently in some cases,
-     * such as to support fulltext index.
      */
     function endCreateTable($name, array $def)
     {
@@ -276,9 +274,11 @@ class MysqlSchema extends Schema
     
     function preferredEngine($def)
     {
+        /* MyISAM is no longer required for fulltext indexes, fortunately
         if (!empty($def['fulltext indexes'])) {
             return 'MyISAM';
         }
+        */
         return 'InnoDB';
     }