Skip to content

Commit a012182

Browse files
authored
Use "Id" for insert rows key instead of "participantid" (which is a column alias) (#1023)
1 parent f843046 commit a012182

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

ehr/src/org/labkey/ehr/pipeline/GeneticCalculationsImportTask.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,8 +689,7 @@ private static void processInbreeding(Container c, User u, File pipelineDir, Log
689689
continue;
690690
}
691691

692-
//row.put("Id", subjectId);
693-
row.put("participantid", subjectId);
692+
row.put("Id", subjectId);
694693
row.put("date", date);
695694
row.put("coefficient", Double.parseDouble(fields[1]));
696695

0 commit comments

Comments
 (0)