#479 - Insert of @Draftable with getGeneratedKeys ... PersistenceException executing insert

This commit is contained in:
Robin Bygrave
2015-12-07 09:21:26 +13:00
parent c3eae0d3a5
commit 9c6c59afab
@@ -84,7 +84,7 @@ public final class InsertMeta {
this.selectLastInsertedId = desc.getSelectLastInsertedId();
}
this.sqlNullId = genSql(true, tableName, false);
this.sqlDraftNullId = desc.isDraftable() ? genSql(false, draftTableName, true) : sqlNullId;
this.sqlDraftNullId = desc.isDraftable() ? genSql(true, draftTableName, true) : sqlNullId;
}
}