From c8aa665c29406f848e1c70dd33fbafc17d6a166d Mon Sep 17 00:00:00 2001 From: Konrad Abicht Date: Fri, 15 Jun 2018 18:44:20 +0200 Subject: [PATCH] fix #115 (switch from MyISAM to InnoDB as table engine) --- store/ARC2_StoreSelectQueryHandler.php | 2 +- store/ARC2_StoreTableManager.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/store/ARC2_StoreSelectQueryHandler.php b/store/ARC2_StoreSelectQueryHandler.php index 88388c7f..a35aeca8 100644 --- a/store/ARC2_StoreSelectQueryHandler.php +++ b/store/ARC2_StoreSelectQueryHandler.php @@ -22,7 +22,7 @@ public function __init() parent::__init(); $this->store = $this->caller; $this->handler_type = 'select'; - $this->engine_type = $this->v('store_engine_type', 'MyISAM', $this->a); + $this->engine_type = $this->v('store_engine_type', 'InnoDB', $this->a); $this->cache_results = $this->v('store_cache_results', 0, $this->a); } diff --git a/store/ARC2_StoreTableManager.php b/store/ARC2_StoreTableManager.php index 38d9830e..8afedead 100755 --- a/store/ARC2_StoreTableManager.php +++ b/store/ARC2_StoreTableManager.php @@ -19,7 +19,7 @@ public function __construct($a, &$caller) public function __init() { parent::__init(); - $this->engine_type = $this->v('store_engine_type', 'MyISAM', $this->a); + $this->engine_type = $this->v('store_engine_type', 'InnoDB', $this->a); } public function getTableOptionsCode()