comments inside the table description
Status: Beta
Brought to you by:
itamarc
If there is comments inside the table description, the output is completely messed.
For example :
/**
* description
*/
DROP TABLE IF EXISTS table1;
CREATE TABLE table1 (
...
/** comment
**/
);
/**
* description
*/
DROP TABLE IF EXISTS table2;
CREATE TABLE table2 (
...
);
The output thus mix the two tables in a single one, misinterpreting the fields.