Matthias Sattel commented on Bug HHH-8197

Using the criteria API the problem can also be reproduced as shown in the follogin listing:

        String entityName = "_testCatalog_Task";
        DetachedCriteria detachedCriteria = DetachedCriteria.forEntityName(entityName);
        detachedCriteria.setFetchMode("subtasks", FetchMode.JOIN);
        detachedCriteria.setFetchMode("subtasks.activities", FetchMode.JOIN);
        List<Map<String, Object>> result = detachedCriteria.getExecutableCriteria(session).list();
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira