CLOUD-1830: Using correct table-name (upper-case) to check if activiti tables exist

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@51958 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Frederik Heremans
2013-07-02 09:13:10 +00:00
parent 2d3d35dac2
commit 113822227c

View File

@@ -627,7 +627,7 @@ public class SchemaBootstrap extends AbstractLifecycleBean
try
{
stmt = connection.createStatement();
stmt.executeQuery("select count(id_) from act_ru_task");
stmt.executeQuery("select count(id_) from ACT_RU_TASK");
return true;
}
catch (SQLException e)