CloneHelper does not clone onDelete or onUpdate on ForeignKey objects
---------------------------------------------------------------------
Key: DBUTILS-46
URL: https://issues.apache.org/jira/browse/DBUTILS-46
Project: Commons DbUtils
Issue Type: Bug
Affects Versions: 1.2
Reporter: Frank Hampshire
Fix For: 1.2
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.