pub fn is_true<'a, V, E>(
expr: E,
) -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Bool, NonNull, E::Aggregate>Expand description
IS TRUE - tests if a boolean expression is true.
Unlike = TRUE, this handles NULL correctly:
TRUE IS TRUE→ trueFALSE IS TRUE→ falseNULL IS TRUE→ false (not NULL!)