Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.0-beta1
-
None
-
None
-
mysql
Description
if a table option is set which is not a valid table creation option for mysql, e.g.
<table name="OPTION_TABLE" description="table with options">
<option key="tableOptionKey1" value="tableOptionValue1"/>
...
invalid sql will be rendered:
CREATE TABLE OPTION_TABLE
(
...
) if(tableOptionKey1 == "PARTITION BY")
tableOptionKey1 tableOptionValue1;