Hello,
I have a GAE instance on Google cloudsql and created one database on it, in the database there is a table which have 40 fields, and have 5 text fields.
The issue is when I run update sql to update one of the text field, cloudsql alert me with below error:
[Err] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline.
I can make sure the field is text and the update value is less than 64 kb, and in my another table which have 10 fields we can update successfully use the same sql.
Does cloudsql have this issue when a table have more than some fields? e.g. more than 30? or 35?
Thanks.