{
continue;
}
FKConstraintDefinitionNode fk = (FKConstraintDefinitionNode) element;
ConstraintInfo ci = fk.getReferencedConstraintInfo();
int deleteRule = ci.getReferentialActionDeleteRule();
int updateRule = ci.getReferentialActionUpdateRule();
//
// Currently we don't support ON UPDATE CASCADE. Someday we might.
// We're laying a trip-wire here so that we won't neglect to code the appropriate check
// when we support ON UPDATE CASCADE.