Changes between Initial Version and Version 1 of Ticket #3145, comment 1
- Timestamp:
- 08/19/2017 05:13:49 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3145, comment 1
initial v1 4 4 `meta_id + value_id + meta_join ( meta_key, meta_value)` 5 5 translates to: 6 8 (int) + 20 (int) + 4 * 191 (varchar) + 4 * 191 (varchar) = 1556 characters which is more than the max key length of 1000.6 8 (int) + 20 (int) + 3 * 191 (varchar) + 3 * 191 (varchar) = 1174 characters which is more than the max key length of 1000 for MyISAM tables.