Skip to content

Commit

Permalink
fix #115 (switch from MyISAM to InnoDB as table engine)
Browse files Browse the repository at this point in the history
  • Loading branch information
k00ni committed Jun 15, 2018
1 parent 01bdabf commit c8aa665
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion store/ARC2_StoreSelectQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion store/ARC2_StoreTableManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit c8aa665

Please sign in to comment.