For some time I noticed that MySQL would append comments to InnoDB tables that have foreign keys defined. It looks like this:
InnoDB free: 0 kB; (
event_id
) REFER events
(event_id
) ON U...
In order to display my table description correctly, I have to parse string and split it by semicolon. It is not big deal in general, however it's quite annoying to see this messages all the time in Database GUI.
I went through stackoverflow and found this question which was not very handy in my case, so I'm wandering is it possible to disable this behaviour/bug?
UPDATE: MySQL version installed on hosting provider servers is 5.0.77