-
Type:
Improvement
-
Resolution: Fixed
-
Priority:
Minor
-
Affects Version/s: None
-
Component/s: None
-
None
If you want to have attributeDefs with same name case-insensitive, set this in grouper.properties
grouperHook.AttributeDefUniqueNameCaseInsensitiveHook.autoRegister = false |
To see if you have two attributeDefs with same name, run this query
select * from grouper_attribute_def gad1, grouper_attribute_def gad2
|
where gad1.id != gad2.id and
|
lower(gad1.name) = lower(gad2.name)
|