From 6cedd4a95cfc23a1679400fb64863c49f24f2306 Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 12 Sep 2017 12:24:23 -0700 Subject: [PATCH] Revert quickstart for tables with native FULLTEXT indexes to MyISAM See D18594. --- resources/sql/quickstart.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/sql/quickstart.sql b/resources/sql/quickstart.sql index e9ae4465a4..b29472d5e7 100644 --- a/resources/sql/quickstart.sql +++ b/resources/sql/quickstart.sql @@ -3477,7 +3477,7 @@ CREATE TABLE `search_documentfield` ( `stemmedCorpus` longtext CHARACTER SET {$CHARSET_SORT} COLLATE {$COLLATE_SORT}, KEY `phid` (`phid`), FULLTEXT KEY `key_corpus` (`corpus`,`stemmedCorpus`) -) ENGINE=InnoDB DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT}; +) ENGINE=MyISAM DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT}; CREATE TABLE `search_documentrelationship` ( `phid` varbinary(64) NOT NULL, @@ -4568,7 +4568,7 @@ CREATE TABLE `conpherence_index` ( UNIQUE KEY `key_previous` (`previousTransactionPHID`), KEY `key_thread` (`threadPHID`), FULLTEXT KEY `key_corpus` (`corpus`) -) ENGINE=InnoDB DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT}; +) ENGINE=MyISAM DEFAULT CHARSET={$CHARSET} COLLATE={$COLLATE_TEXT}; CREATE TABLE `conpherence_participant` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT,