CloneHelper does not clone onDelete or onUpdate on ForeignKey objects
---------------------------------------------------------------------
Key: DDLUTILS-223
URL: https://issues.apache.org/jira/browse/DDLUTILS-223
Project: DdlUtils
Issue Type: Bug
Components: Core (No specific database)
Reporter: Frank Hampshire
Assignee: Thomas Dudziak
CloneHelper does not clone onDelete or onUpdate.
When CloneHelper clones a foreign key, it does not set the onDelete and
onUpdate to the the created ForeignKey.
The solution to this seems simple enough: add
result.setOnDelete(source.getOnDelete());
result.setOnUpdate(source.getOnUpdate());
to the clone method for ForeignKey objects
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.