Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Linda SuiLinda Sui(Deactivated)Reporter
Alberto ChaparroAlberto ChaparroBranch Version/s
7.0.xBackported to Branch
CommittedFix Priority
3Git Pull Request
7.0 Fix Pack Version
10Story Points
1.25Affects versions
Priority
Medium
Details
Details
Assignee
Linda Sui
Linda Sui(Deactivated)Reporter
Alberto Chaparro
Alberto ChaparroBranch Version/s
7.0.x
Backported to Branch
Committed
Fix Priority
3
Git Pull Request
7.0 Fix Pack Version
10
Story Points
1.25
Affects versions
Priority
Zendesk Support
Zendesk Support
Zendesk Support
Created December 27, 2016 at 8:00 AM
Updated June 25, 2023 at 11:55 PM
Resolved January 4, 2017 at 9:57 AM
Steps to reproduce:
Upgrade a 6.2 version to master/DXP
After finishing the upgrade check the Group_ table
Results:
The type of the groupKey is longtext (mysql) or similar.
Following indexes weren't created (just in mysql):
create unique index IX_A729E3A6 on Group_ (companyId, classNameId, liveGroupId, groupKey); create unique index IX_ACD2B296 on Group_ (companyId, groupKey); create unique index IX_AACD15F0 on Group_ (companyId, liveGroupId, groupKey);
Because mysql only supports a maximum of 255 characters for field indexes:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: BLOB/TEXT column 'groupKey' used in key specification without a key length
Expected results:
The type of the field groupKey is VARCHAR(150)
The previous indexes are created.