Do not skip running from_storage filter when a NULL is returned
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / FilterColumn.pm
index 6fdf1ad..eb46664 100644 (file)
@@ -32,11 +32,7 @@ sub filter_column {
 sub _column_from_storage {
   my ($self, $col, $value) = @_;
 
-  return $value if (
-    ! defined $value
-      or
-    is_literal_value($value)
-  );
+  return $value if is_literal_value($value);
 
   my $info = $self->column_info($col)
     or $self->throw_exception("No column info for $col");