Put the stringification back, older versions of DateTime string equality are
Michael G Schwern [Thu, 14 Feb 2008 07:43:24 +0000 (23:43 -0800)]
still broken.  But don't bother to stringify anything that's not a reference.

lib/DBIx/Class/CDBICompat/GetSet.pm

index 80e941f..dd621f2 100644 (file)
@@ -17,6 +17,15 @@ sub get {
 
 sub set {
   my($self, %data) = @_;
+
+  # set_columns() is going to do a string comparison before setting.
+  # This breaks on DateTime objects (whose comparison is arguably broken)
+  # so we stringify anything first.
+  for my $key (keys %data) {
+    next unless ref $data{$key};
+    $data{$key} = "$data{$key}";
+  }
+
   return shift->set_columns(\%data);
 }