}
for (Iterator iter = pKey.getColumnLinks(); iter.hasNext(); ) {
ForeignKey.ColumnLink columnReference = (ForeignKey.ColumnLink) iter.next();
BooleanConstraint eq = createEQ();
ObjectFactory of = getConstrainedStatement().getSQLFactory().getObjectFactory();
eq.addPart(of.newColumnReference(pReferencingTable, columnReference.getLocalColumn()));
eq.addPart(of.newColumnReference(pReferencedTable, columnReference.getReferencedColumn()));
}
}