Skip to content

Commit 6454dc3

Browse files
authored
ExternalId fix
1 parent b292938 commit 6454dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datamigrator-core/src/main/java/migrator/core/sobject/MigrableMasterDetailObject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public SObject buildMapping(SforceObject sforceObject, SforceObjectPair sourcePa
175175
+ " field definition not matching in source/target orgs!");
176176
continue;
177177
}
178-
if(!createableFieldSet.contains(field)) {
178+
if(!createableFieldSet.isEmpty() && !createableFieldSet.contains(field)) {
179179
continue;
180180
}
181181

0 commit comments

Comments
 (0)