OPENDJ-1714 Fix index type error on setup
Since r12022, default index 'member' has both equality and substring types.
This commit removes the substring type added by mistake.
| | |
| | | DefaultIndex.withEqualityAndSubstring("cn"), |
| | | DefaultIndex.withEqualityAndSubstring("givenName"), |
| | | DefaultIndex.withEqualityAndSubstring("mail"), |
| | | DefaultIndex.withEqualityAndSubstring("member"), |
| | | DefaultIndex.withEqualityAndSubstring("sn"), |
| | | DefaultIndex.withEqualityAndSubstring("telephoneNumber"), |
| | | DefaultIndex.withEquality("member"), |
| | | DefaultIndex.withEquality("uid"), |
| | | DefaultIndex.withEquality("uniqueMember") |
| | | }; |