Closed GoogleCodeExporter closed 8 years ago
Thank you.
Is it possible your server does not have InnoDB installed?
Please consult either:
SHOW ENGINES;
or
SHOW GLOBAL VARIABLES LIKE 'have_innodb';
Please attach answer for both.
Original comment by shlomi.n...@gmail.com
on 16 Jan 2012 at 3:50
Innodb is indeed disabled in Mysql config (skip-innodb). Is this a problem?
Output of show engines:
+------------+---------+--------------------------------------------------------
--------+--------------+------+------------+
| Engine | Support | Comment
| Transactions | XA | Savepoints |
+------------+---------+--------------------------------------------------------
--------+--------------+------+------------+
| InnoDB | NO | Supports transactions, row-level locking, and foreign
keys | NULL | NULL | NULL |
| MRG_MYISAM | YES | Collection of identical MyISAM tables
| NO | NO | NO |
| BLACKHOLE | YES | /dev/null storage engine (anything you write to it
disappears) | NO | NO | NO |
| CSV | YES | CSV storage engine
| NO | NO | NO |
| MEMORY | YES | Hash based, stored in memory, useful for temporary
tables | NO | NO | NO |
| FEDERATED | NO | Federated MySQL storage engine
| NULL | NULL | NULL |
| ARCHIVE | YES | Archive storage engine
| NO | NO | NO |
| MyISAM | DEFAULT | Default engine as of MySQL 3.23 with great performance
| NO | NO | NO |
+------------+---------+--------------------------------------------------------
--------+--------------+------+------------+
SHOW GLOBAL VARIABLES LIKE 'have_innodb':
| have_innodb | DISABLED |
Original comment by tiim...@gmail.com
on 16 Jan 2012 at 3:59
It is a problem only for Issue 27 :)
Will write a fix for that shortly.
Original comment by shlomi.n...@gmail.com
on 16 Jan 2012 at 4:07
Thanks a lot Shlomi. Really looking forward using this!
Original comment by tiim...@gmail.com
on 17 Jan 2012 at 9:35
This issue was closed by revision r218.
Original comment by shlomi.n...@gmail.com
on 17 Jan 2012 at 7:39
The fix is in revision 218.
The revision is not yet published -- but you can grab the source code directly
at:
http://mycheckpoint.googlecode.com/svn-history/r218/trunk/src/mycheckpoint.py
Some additions in this revision may not actually make it to the next release.
I expect a release within the next month or so.
If you just want the specific fix to revision 208, then add the following lines:
"innodb_buffer_pool_read_ahead",
"innodb_buffer_pool_read_ahead_evicted",
"innodb_rows_read",
"innodb_rows_inserted",
"innodb_rows_updated",
"innodb_rows_deleted",
at the get_additional_status_variables() function (starting line 640). (Not
providing a patch here)
Original comment by shlomi.n...@gmail.com
on 17 Jan 2012 at 7:44
fantastic. thanks a lot!
Original comment by tiim...@gmail.com
on 25 Jan 2012 at 3:09
Original issue reported on code.google.com by
tiim...@gmail.com
on 16 Jan 2012 at 2:58