Skip to content

Commit b229e18

Browse files
committed
Use "Id" for insert rows key instead of "participantid" (which is a column alias)
1 parent 264bb36 commit b229e18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,8 +689,8 @@ 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);
693+
//row.put("participantid", subjectId);
694694
row.put("date", date);
695695
row.put("coefficient", Double.parseDouble(fields[1]));
696696

0 commit comments

Comments
 (0)