Show the actual trigger.
SHOW CREATE TRIGGER triggername;
The docs say it can work if done correctly.
Example:
Code:
delimiter //
CREATE TRIGGER yourname BEFORE INSERT ON t
FOR EACH ROW
BEGIN
SET NEW.b = 'whatever';
END
//
delimiter ;
I just tried it. That worked perfectly in MySQL 5.5 for me.