Joined: Wed Oct 20, 2004 10:06 am Posts: 1
|
I assume I am missing something terribly basic but:
hibernate does not generate indexes on table columns.
Here is an excerpt from the mapping file:
...
<property
name="finished"
type="boolean"
update="true"
insert="true"
access="property"
>
<column
name="is_finished"
index="idx_support_1"
/>
</property>
...
tables and columns are generated but indexes are not. I am using SAP DB dialect. Having studied source code I found out that Table.createIndex() method (which as I understand is supposed to be used to fill in information about indexes in mapping files) is never invoked.
Is that really so?
Regards,
Sergey.
|
|