nativeDefault attribute for column, which is not interpreted by DdlUtils at all
-------------------------------------------------------------------------------
Key: DDLUTILS-80
URL: http://issues.apache.org/jira/browse/DDLUTILS-80
Project: DdlUtils
Type: New Feature
Environment: all
Reporter: Joachim Wackerow
Assigned to: Thomas Dudziak
A column attribute "nativeDefault" would enable a definition of a default value
which is not interpreted by DdlUtils at all. The value of the attribute would
be the value of the SQL DEFAULT as is.
Example:
<column name="timestamp" type="TIMESTAMP" nativeDefault="CURRENT_TIMESTAMP"/>
would result in SQL code:
ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP
With the existing column attribute default it would result in (which is not
desired):
ts TIMESTAMP DEFAULT 'CURRENT_TIMESTAMP'
Comment from Tom:
In general the default value is expected to be a string value that can
be converted to the Java type corresponding to the JDBC type (as
defined by the JDBC spec).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira