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 (fieldName.toLowerCase().startsWith(ExpData.DATA_INPUT_PARENT.toLowerCase()) || fieldName.toLowerCase().startsWith(ExpMaterial.MATERIAL_INPUT_PARENT.toLowerCase()))
187
+
if (fieldName.toLowerCase().startsWith(ExpData.DATA_INPUTS_PREFIX.toLowerCase()) || fieldName.toLowerCase().startsWith(ExpMaterial.MATERIAL_INPUTS_PREFIX.toLowerCase()))
188
188
{
189
189
// Issue 53825: LKSM/LKB: Sample Timeline entries for lineage updates with domains containing & or . may be incorrect
190
190
String[] parts = fieldName.split("/", 2);
@@ -197,7 +197,7 @@ else if (isExtraAuditField)
197
197
}
198
198
}
199
199
row.forEach((fieldName, value) -> {
200
-
if (fieldName.toLowerCase().startsWith(ExpData.DATA_INPUT_PARENT.toLowerCase()) || fieldName.toLowerCase().startsWith(ExpMaterial.MATERIAL_INPUT_PARENT.toLowerCase()))
200
+
if (fieldName.toLowerCase().startsWith(ExpData.DATA_INPUTS_PREFIX.toLowerCase()) || fieldName.toLowerCase().startsWith(ExpMaterial.MATERIAL_INPUTS_PREFIX.toLowerCase()))
201
201
if (!originalRow.containsKey(fieldName) && !existingEncodedInputColumns.contains(fieldName))
0 commit comments