Column update using Informix

Hi,
I am using INFORMIX 8 and trying to update column value by apending '09' to existing record .

update sample_data_table set Name = Name||22 where id = 90 and state = NY

This worked fine in oracle Database,But throwing error in informix .
I need output as Ravi22 for Ravi record in column Name .

Please help