Closed
Bug 856675
Opened 12 years ago
Closed 12 years ago
Convert devtools cluster to all use innodb, except where appropriate
Categories
(Data & BI Services Team :: DB: MySQL, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: scabral, Unassigned)
References
Details
convert dbs to all use innodb, except where appropriate, such as where there are fulltext searches.
Reporter | ||
Comment 1•12 years ago
|
||
mysql> select table_name,table_schema from information_schema.tables where engine='myisam' and table_schema not in ('mysql','performance_schema','information_schema');
+------------+-------------------------+
| table_name | table_schema |
+------------+-------------------------+
| log | getpersonas_allizom_org |
+------------+-------------------------+
1 row in set (0.01 sec)
mysql> select distinct table_schema,table_name from information_schema.statistics where index_type='fulltext';
Empty set (0.04 sec)
These are OK to keep MyISAM.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: mozilla.org → Data & BI Services Team
You need to log in
before you can comment on or make changes to this bug.
Description
•