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

    https://github.com/apache/metamodel/pull/70#discussion_r45542637
  
    --- Diff: core/src/main/java/org/apache/metamodel/query/FromClause.java ---
    @@ -75,7 +75,13 @@ public FromItem getItemByReference(String reference) {
             return null;
         }
     
    -    private FromItem getItemByReference(FromItem item, String reference) {
    +    private FromItem getItemByReference(final FromItem item, final String 
reference) {
    +        if (reference.equals(item.toStringNoAlias(false))) {
    +            return item;
    +        }
    +        if (reference.equals(item.toStringNoAlias(true))) {
    +            return item;
    +        }
             final String alias = item.getAlias();
    --- End diff --
    
    Makes no difference to me, so I can easily change it :-) 


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to