Hello John,

Rose::DB::Object::Metadata::Auto::MySQL line 93:

Index: Rose-DB-Object/lib/Rose/DB/Object/Metadata/Auto/MySQL.pm
===================================================================
--- Rose-DB-Object/lib/Rose/DB/Object/Metadata/Auto/MySQL.pm
(Revision 558)
+++ Rose-DB-Object/lib/Rose/DB/Object/Metadata/Auto/MySQL.pm
(Arbeitskopie)
@@ -90,7 +90,7 @@
   # This sort order is part of the API, and is essential to make the
   # test suite work.
   no warnings 'uninitialized';
-  my @uk = map { $unique_keys{$_} } sort { lc $a <=> lc $b }
keys(%unique_keys);
+  my @uk = map { $unique_keys{$_} } sort { lc $a cmp lc $b }
keys(%unique_keys);

   return wantarray ? @uk : [EMAIL PROTECTED];
 }


Changed "<=>" to "cmp", fixes a warning in the test suite.


Thanks,
bye, Uwe


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Rose-db-object mailing list
Rose-db-object@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rose-db-object

Reply via email to