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
Issue 53586: Domain field with long name can result in "PropertyURI cannot exceed 300 characters, but was 302 characters long." (#6939)
- Update DomainUtil.createUniquePropertyURI() to use LsidManager.getLsidPrefixDbSeq()
- Use DomainUtil.createUniquePropertyURI() in several places instead of appending encoded field name
- PropertyController TestCase fix for setup and cleanup of Domain
- Nab test fix for SQL selects that were looking for run properties by propertyURI instead of name
- DataIteratorUtil._createTableMap to not include PropertyURI suffix as tableAliasMap option
- VocabularyDomainKind propertyURI to continue using field name as suffix
defaultICSQL.append(" WHERE op.PropertyId = pd.PropertyId AND pd.PropertyURI LIKE '%#" + DilutionAssayProvider.CURVE_FIT_METHOD_PROPERTY_NAME + "' AND ns.RowId = ");
84
+
defaultICSQL.append(" WHERE op.PropertyId = pd.PropertyId AND pd.Name = ? ");
0 commit comments