#1896 - ebean.allQuotedIdentifiers is ignored for @JoinColumn

This commit is contained in:
rob bygrave
2019-12-23 13:30:28 +13:00
parent 71295077a5
commit ffb11019fa
5 changed files with 31 additions and 22 deletions
@@ -172,7 +172,7 @@ public class AnnotationAssocOnes extends AnnotationParser {
if (beanTable == null) {
throw new IllegalStateException("Looks like a missing @ManyToOne or @OneToOne on property " + prop.getFullBeanName() + " - no related 'BeanTable'");
}
prop.getTableJoin().addJoinColumn(false, joinColumn, beanTable);
prop.getTableJoin().addJoinColumn(util, false, joinColumn, beanTable);
if (!joinColumn.updatable()) {
prop.setDbUpdateable(false);
}