@@ -99,21 +99,21 @@ pub enum Expr {
9999 SimilarTo ( Like ) ,
100100 /// Negation of an expression. The expression's type must be a boolean to make sense.
101101 Not ( Box < Expr > ) ,
102- /// Whether an expression is not Null . This expression is never null .
102+ /// True if argument is not NULL, false otherwise . This expression itself is never NULL .
103103 IsNotNull ( Box < Expr > ) ,
104- /// Whether an expression is Null . This expression is never null .
104+ /// True if argument is NULL, false otherwise . This expression itself is never NULL .
105105 IsNull ( Box < Expr > ) ,
106- /// Whether an expression is True. Boolean operation
106+ /// True if argument is true, false otherwise. This expression itself is never NULL.
107107 IsTrue ( Box < Expr > ) ,
108- /// Whether an expression is False. Boolean operation
108+ /// True if argument is false, false otherwise. This expression itself is never NULL.
109109 IsFalse ( Box < Expr > ) ,
110- /// Whether an expression is Unknown. Boolean operation
110+ /// True if argument is NULL, false otherwise. This expression itself is never NULL.
111111 IsUnknown ( Box < Expr > ) ,
112- /// Whether an expression is not True. Boolean operation
112+ /// True if argument is FALSE or NULL, false otherwise. This expression itself is never NULL.
113113 IsNotTrue ( Box < Expr > ) ,
114- /// Whether an expression is not False. Boolean operation
114+ /// True if argument is TRUE OR NULL, false otherwise. This expression itself is never NULL.
115115 IsNotFalse ( Box < Expr > ) ,
116- /// Whether an expression is not Unknown. Boolean operation
116+ /// True if argument is TRUE or FALSE, false otherwise. This expression itself is never NULL.
117117 IsNotUnknown ( Box < Expr > ) ,
118118 /// arithmetic negation of an expression, the operand must be of a signed numeric data type
119119 Negative ( Box < Expr > ) ,
0 commit comments