Github user narahari92 commented on the pull request:

    https://github.com/apache/metamodel/pull/11#issuecomment-87285208
  
    Hey,
    
    I had actually checked that, but it turns out that parseSelectClause method 
of QueryParser is not always called. For example I used like below..
    
    1. Query query = new Query().select("username,password").from("USER_TABLE");
         context.executeQuery(query);
    
    2. Table user  = context.getTableByQualifiedLabel("userdetails.USER_TABLE");
         Query query = new Query().select("username,password").from(user);
         context.executeQuery(query);
    
    In both the above cases this method was not called. Or am I not supposed to 
instantiate Query class in this way?


---
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