You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If allowLookupByAlternateKey is true or the sample lookup is by name, we call findExpMaterial which will attempt to resolve by name first and then rowId.
994
994
// If allowLookupByAlternateKey is false, we will only try resolving by the rowId.
995
995
ExpMaterialmaterial = null;
996
-
if (settings.isAllowLookupByAlternateKey() || isSampleLookupByName)
996
+
if (settings.getLookupResolutionType().useAlternateKey() || isSampleLookupByName)
primaryKey(false), // known that the user will always supply the pk value
6
+
alternateThenPrimaryKey(true); // If there is a situation where it's sometimes a primary and sometimes an alternate key, check for the alternate key first
privatefinalMap<String, Object> _responseInfo = newHashMap<>(); // information from the import/loadRows context to be passed back to the API response object
65
67
privateLogger_logger;
@@ -162,15 +164,31 @@ public void setSupportAutoIncrementKey(boolean supportAutoIncrementKey)
0 commit comments