
| Key: |
HBX-564
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
George Lindholm
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
reverse enginnering generates:
<timestamp name="lastUpdtDate" type="timestamp" name="LAST_UPDT_DATE" />
hxm->java fails with:
...
Error on line 11 of document : Attribute "name" was already specifed for element "timestamp".
I think that should be:
<timestamp name="lastUpdtDate" type="timestamp" column="LAST_UPDT_DATE" />
Changing the tag name then generates this exception:
Attribute "type" must be declared for element type "timestamp"
which doesn't make sense?
|
|
Description
|
reverse enginnering generates:
<timestamp name="lastUpdtDate" type="timestamp" name="LAST_UPDT_DATE" />
hxm->java fails with:
...
Error on line 11 of document : Attribute "name" was already specifed for element "timestamp".
I think that should be:
<timestamp name="lastUpdtDate" type="timestamp" column="LAST_UPDT_DATE" />
Changing the tag name then generates this exception:
Attribute "type" must be declared for element type "timestamp"
which doesn't make sense? |
Show » |
|
workaround: update timestamp.hbm.vm to use column instead of name and remove the type attribute.