If i let HeideSQL create a SQL for that Table it looks like below, event has a explicit 'ascii_general_ci' collation, no idea why ( the table itself has the MYISAM + utf_general_ci stuff).
CREATE TABLE `qa_eventlog` (
`datetime` DATETIME NOT NULL,
`ipaddress` VARCHAR(15) NULL DEFAULT NULL COLLATE 'ascii_general_ci',
`userid` INT(10) UNSIGNED NULL DEFAULT NULL,
`handle` VARCHAR(20) NULL DEFAULT NULL,
`cookieid` BIGINT(20) UNSIGNED NULL DEFAULT NULL,
`event` VARCHAR(20) NOT NULL COLLATE 'ascii_general_ci',
`params` VARCHAR(800) NOT NULL,
INDEX `datetime` (`datetime`),
INDEX `ipaddress` (`ipaddress`),
INDEX `userid` (`userid`),
INDEX `event` (`event`)
)
COLLATE='utf8_general_ci'
ENGINE=MyISAM
;