Hi All,
I'm trying to create a unique index on an attribute using the below DQL:
EXECUTE make_index WITH type_name='mytest_obj', attribute='testattribute_id', is_unique=true;
GO
This creates the index successfully but when I look at the underlying database I see that the index is NONUNIQUE.
Furthermore, the DQL reference manuals state the keyword to use is 'unique=true' but this actually throws an error and I have to use 'is_unique=true'
Any ideas what I'm doing wrong here?
Any feedback appreciated.
Thanks,
Eoghan