Menu

method toString of IsNullExpression

2008-11-05
2012-12-07
  • Cesar Augusto

    Cesar Augusto - 2008-11-05

    IsNullExpression class doesn't override toString() method.
    This is the solution:

        public String toString() {
            return leftExpression + " IS "+((not)?"NOT ":"")+"NULL";
        }

     
    • Leonardo Francalanci

      Thanks, I will add it to next release.

       

Log in to post a comment.