IsNullExpression class doesn't override toString() method. This is the solution:
public String toString() { return leftExpression + " IS "+((not)?"NOT ":"")+"NULL"; }
Thanks, I will add it to next release.
Log in to post a comment.
IsNullExpression class doesn't override toString() method.
This is the solution:
public String toString() {
return leftExpression + " IS "+((not)?"NOT ":"")+"NULL";
}
Thanks, I will add it to next release.