I'm trying to run a CREATE TABLE with 234 columns and I'm getting a MySQL: Error Code: 1118 Row size too large (> 8126)
error.
Ideally I wouldn't have such a table but I do and rewriting the code so that one isn't needed is not practical.
According to MySQL: Error Code: 1118 Row size too large (> 8126). Changing some columns to TEXT or BLOB setting innodb_strict_mode
to 0
will do the trick but idk how to do that. When I click on the parameter group for this DB and do a search for innodb_strict_mode
nothing comes up.
Any ideas?