array('table.civicrm_column_name.toomanydots', 'MysqlColumnName', NULL),
array('invalid-column-name', 'MysqlColumnName', NULL),
array('column_name, sleep(5)', 'MysqlColumnName', NULL),
+ array(str_repeat('a', 64), 'MysqlColumnName', str_repeat('a', 64)),
+ array(str_repeat('a', 65), 'MysqlColumnName', NULL),
+ array(str_repeat('a', 64) . '.' . str_repeat('a', 64), 'MysqlColumnName', str_repeat('a', 64) . '.' . str_repeat('a', 64)),
+ array(str_repeat('a', 64) . '.' . str_repeat('a', 65), 'MysqlColumnName', NULL),
+ array(str_repeat('a', 65) . '.' . str_repeat('a', 64), 'MysqlColumnName', NULL),
array('asc', 'MysqlOrderByDirection', 'asc'),
array('DESC', 'MysqlOrderByDirection', 'desc'),
array('DESCc', 'MysqlOrderByDirection', NULL),