Remove leading underscore from JOIN_PREFIX since Oracle doesn't like it.
This commit is contained in:
parent
45d32cc2da
commit
2b3b10e1e1
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ public final class Relation {
|
|||
|
||||
// prefix to use for symbolic names of joined tables. The name is composed
|
||||
// from this prefix and the name of the property we're doing the join for
|
||||
final static String JOIN_PREFIX = "_JOIN_";
|
||||
final static String JOIN_PREFIX = "JOIN_";
|
||||
|
||||
// direct mapping is a very powerful feature:
|
||||
// objects of some types can be directly accessed
|
||||
|
|
Loading…
Add table
Reference in a new issue