This commit is contained in:
@@ -153,7 +153,7 @@ public final class EntityInfo<T> {
|
|||||||
this.fullloader = loader;
|
this.fullloader = loader;
|
||||||
} else {
|
} else {
|
||||||
this.fullloader = fullloader;
|
this.fullloader = fullloader;
|
||||||
this.table = (t == null) ? type.getSimpleName().toLowerCase() : (t.catalog().isEmpty()) ? t.name() : (t.catalog() + '.' + t.name());
|
this.table = (t == null) ? type.getSimpleName().toLowerCase() : (t.catalog().isEmpty()) ? t.name() : (t.catalog() + '.' + (t.name().isEmpty() ? type.getSimpleName().toLowerCase() : t.name()));
|
||||||
}
|
}
|
||||||
DistributeTable dt = type.getAnnotation(DistributeTable.class);
|
DistributeTable dt = type.getAnnotation(DistributeTable.class);
|
||||||
DistributeTableStrategy dts = null;
|
DistributeTableStrategy dts = null;
|
||||||
|
|||||||
Reference in New Issue
Block a user