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

    https://github.com/apache/tajo/pull/231#discussion_r20977436
  
    --- Diff: 
tajo-plan/src/main/java/org/apache/tajo/plan/NamedExprsManager.java ---
    @@ -193,11 +193,11 @@ public String addExpr(Expr expr, String alias) throws 
PlanningException {
        * Adds an expression and returns a reference name.
        * If an alias is given, it specifies the alias as an reference name.
        */
    -  public String addNamedExpr(NamedExpr namedExpr) throws PlanningException 
{
    +  public String addNamedExpr(NamedExpr namedExpr, boolean identifiable) 
throws PlanningException {
         if (namedExpr.hasAlias()) {
           return addExpr(namedExpr.getExpr(), namedExpr.getAlias());
         } else {
    -      return addExpr(namedExpr.getExpr());
    +      return addExpr(namedExpr.getExpr(), identifiable);
    --- End diff --
    
    I'll leave a detailed description for the identifiable name, tomorrow.


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