default column_info_from_storage to zero in -current
Brandon L. Black [Tue, 12 Sep 2006 19:34:13 +0000 (19:34 +0000)]
lib/DBIx/Class/ResultSource.pm

index 9328bba..14bc4f8 100644 (file)
@@ -57,9 +57,6 @@ sub new {
   $new->{_relationships} = { %{$new->{_relationships}||{}} };
   $new->{name} ||= "!!NAME NOT SET!!";
   $new->{_columns_info_loaded} ||= 0;
-  if(!defined $new->column_info_from_storage) {
-      $new->{column_info_from_storage} = 1
-  }
   return $new;
 }