* Removed bind_param support from update. that should be handled at the DBIC layer
Jesse Vincent [Sat, 28 Jul 2007 22:38:19 +0000 (17:38 -0500)]
lib/DBIx/Class/JDBICompat/Record.pm

index 52f51ab..8334ec8 100755 (executable)
@@ -852,15 +852,6 @@ sub __set {
         return ( $ret ) if not ( $ret );
     }
 
-    # The blob handling will destroy $args{'value'}. But we assign
-    # that back to the object at the end. this works around that
-    my $unmunged_value = $args{'value'};
-
-    if ( $column->type =~ /^(text|longtext|clob|blob|lob|bytea)$/i ) {
-        my $bhash = $self->_handle->blob_params( $column->name, $column->type );
-        $bhash->{'value'} = $args{'value'};
-        $args{'value'} = $bhash;
-    }
 
     my $val = $self->_handle->update_record_value(
         %args,