Skip to:
Content

bbPress.org

Changes between Initial Version and Version 1 of Ticket #3145, comment 1


Ignore:
Timestamp:
08/19/2017 05:13:49 AM (9 years ago)
Author:
jrf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3145, comment 1

    initial v1  
    44`meta_id + value_id + meta_join ( meta_key, meta_value)`
    55translates to:
    6 8 (int) + 20 (int) + 4 * 191 (varchar) + 4 * 191 (varchar) = 1556 characters which is more than the max key length of 1000.
     68 (int) + 20 (int) + 3 * 191 (varchar) + 3 * 191 (varchar) = 1174 characters which is more than the max key length of 1000 for MyISAM tables.