For some time, I noticed that MySQL will add comments to InnoDB tables that have foreign keys. It looks like this:
InnoDB free: 0 kB; ( event_id ) REFER events ( event_id ) ON U...
To correctly display my description of the table, I have to parse the line and break it with a semicolon. This is generally unimportant, but it is very unpleasant to see this message in the database GUI.
I went through stackoverflow and found this question , which was not very convenient in my case, so I'm wandering, is it possible to disable this behavior / error?
UPDATE: the version of MySQL installed on the servers of the hosting provider is 5.0.77
comments mysql foreign-keys innodb
Nazariy
source share