Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions api/src/org/labkey/api/query/DefaultQueryUpdateService.java
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,12 @@ protected Map<String, Object> _select(Container container, Object[] keys) throws
}
}
}
else
// Issue 46985: Be tolerant of a row not having an LSID value (as the row may have been
// inserted before the table was made extensible), but make sure that we got an LSID field
// when fetching the row
else if (!row.containsKey(objectUriCol.getName()))
{
throw new IllegalStateException("LSID value not found in table - " + table.getName());
throw new IllegalStateException("LSID value not returned when querying table - " + table.getName());
}
}

Expand Down