Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion assay/src/org/labkey/assay/AssayManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ public AssaySchema createSchema(User user, Container container, @Nullable Contai
List<ExpProtocol> allProtocols = getAssayProtocols(container);
for (ExpProtocol protocol : allProtocols)
{
if (name.equalsIgnoreCase(protocol.getName())) // GitHub Issue 763: case-insensitive name check
if (name.equalsIgnoreCase(protocol.getName())) // GitHub Issue #649: case-insensitive name check
return protocol;
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
--GH Issue 778: materialinput Role can be a field name, which has a max length of 200 characters
--GitHub Issue #652: materialinput Role can be a field name, which has a max length of 200 characters
ALTER TABLE exp.MaterialInput ALTER COLUMN Role TYPE VARCHAR(200);
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
--GH Issue 778: materialinput Role can be a field name, which has a max length of 200 characters
--GitHub Issue #652: materialinput Role can be a field name, which has a max length of 200 characters
EXECUTE core.fn_dropifexists 'MaterialInput', 'exp', 'INDEX', 'IDX_MaterialInput_Role';
ALTER TABLE exp.MaterialInput ALTER COLUMN Role NVARCHAR(200) NOT NULL;
CREATE INDEX IDX_MaterialInput_Role ON exp.MaterialInput(Role);
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ else if (newType.getJdbcType().isDateOrTime() && oldType.getJdbcType().isDateOrT
{
updateBooleanValue(
new SQLFragment().appendIdentifier(_domain.getDomainKind().getStorageSchemaName()).append(".").appendIdentifier(_domain.getStorageTableName()),
_pd.getLegalSelectName(dialect), _pdOld.getFormat(), null); // GH Issue 755
_pd.getLegalSelectName(dialect), _pdOld.getFormat(), null); // GitHub Issue #647
}
}
else if (propResized)
Expand Down
Loading