Github user tomatophantastico commented on a diff in the pull request:

    https://github.com/apache/metamodel/pull/153#discussion_r130073934
  
    --- Diff: core/src/main/java/org/apache/metamodel/CompositeDataContext.java 
---
    @@ -190,9 +183,7 @@ public Schema getSchemaByNameInternal(String name) 
throws MetaModelException {
                     }
                 }
             }
    -        String[] result = set.toArray(new String[set.size()]);
    -        Arrays.sort(result);
    -        return result;
    +        return new ArrayList<>(set);
    --- End diff --
    
    This is a Treeset now, see line 175, order is insertion order.
    
    The real Question here is: should getSchemas() be List or Collection?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to