Fixed ALF-10012: Repository fails to start on MS SQL Server

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30161 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2011-09-02 03:07:25 +00:00
parent 77f3687508
commit a33fa7be9f

View File

@@ -122,7 +122,7 @@ public class NodeDAOImpl extends AbstractNodeDAOImpl
"alfresco.node.select_ChildAssocsOfParentWithoutParentAssocsOfType"; "alfresco.node.select_ChildAssocsOfParentWithoutParentAssocsOfType";
private static final String SELECT_PARENT_ASSOCS_OF_CHILD = "alfresco.node.select_ParentAssocsOfChild"; private static final String SELECT_PARENT_ASSOCS_OF_CHILD = "alfresco.node.select_ParentAssocsOfChild";
private static final String UPDATE_PARENT_ASSOCS_OF_CHILD = "alfresco.node.update_ParentAssocsOfChild"; private static final String UPDATE_PARENT_ASSOCS_OF_CHILD = "alfresco.node.update_ParentAssocsOfChild";
private static final String DELETE_SUBSCRIPTIONS = "alfresco.node.delete_Subscriptions"; private static final String DELETE_SUBSCRIPTIONS = "alfresco.node.delete_NodeSubscriptions";
private static final String UPDATE_MOVE_PARENT_ASSOCS = "alfresco.node.update_MoveParentAssocs"; private static final String UPDATE_MOVE_PARENT_ASSOCS = "alfresco.node.update_MoveParentAssocs";
private static final String UPDATE_MOVE_CHILD_ASSOCS = "alfresco.node.update_MoveChildAssocs"; private static final String UPDATE_MOVE_CHILD_ASSOCS = "alfresco.node.update_MoveChildAssocs";
@@ -1566,6 +1566,7 @@ public class NodeDAOImpl extends AbstractNodeDAOImpl
public final void setSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate) public final void setSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate)
{ {
super.setSqlSessionTemplate(sqlSessionTemplate);
this.template = sqlSessionTemplate; this.template = sqlSessionTemplate;
} }