remove another special case IS NULL rendering
Matt S Trout [Sun, 2 Sep 2018 20:45:37 +0000 (20:45 +0000)]
lib/SQL/Abstract.pm

index 49b6ad2..f9ee1e5 100644 (file)
@@ -844,7 +844,7 @@ sub _where_op_VALUE {
   # special-case NULL
   if (! defined $rhs) {
     return defined $lhs
-      ? $self->_convert($self->_quote($lhs)) . ' IS NULL'
+      ? $self->_where_hashpair_HASHREF($lhs, { -is => undef })
       : undef
     ;
   }