
| Key: |
RDBMS-6
|
| Type: |
New Feature
|
| Status: |
Closed
|
| Resolution: |
Won't Fix
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Jose Juan Escudero
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Wen valid a class containing two or more fields with the same column send a DuplicateColumnException.
Class A{
a1
}
Class B1{
A a1
b11
}
Class B2{
A a1
b21
}
Class C{
B1 a1 b11
B2 a1 b21
}
The problem is whit the column a1 in C class. This column is part of the primarykey of the class B1 and B2.
|
|
Description
|
Wen valid a class containing two or more fields with the same column send a DuplicateColumnException.
Class A{
a1
}
Class B1{
A a1
b11
}
Class B2{
A a1
b21
}
Class C{
B1 a1 b11
B2 a1 b21
}
The problem is whit the column a1 in C class. This column is part of the primarykey of the class B1 and B2. |
Show » |
Sort Order:
|
RDBMS-43for the same thing, but with a simpler testcase