[Bast-commits] r5234 - branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader

ilmari at dev.catalyst.perl.org ilmari at dev.catalyst.perl.org
Thu Dec 11 16:51:29 GMT 2008


Author: ilmari
Date: 2008-12-11 16:51:29 +0000 (Thu, 11 Dec 2008)
New Revision: 5234

Modified:
   branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/RelBuilder.pm
Log:
Use join_type => 'LEFT' rather than 'LEFT OUTER' for consistency with
the rest of DBIC.


Modified: branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/RelBuilder.pm
===================================================================
--- branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/RelBuilder.pm	2008-12-10 10:30:30 UTC (rev 5233)
+++ branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/RelBuilder.pm	2008-12-11 16:51:29 UTC (rev 5234)
@@ -218,7 +218,7 @@
               args => [ $remote_relname,
                         $remote_class,
                         \%cond,
-                        $nullable ? { join_type => 'LEFT OUTER' } : ()
+                        $nullable ? { join_type => 'LEFT' } : ()
               ],
             }
         );




More information about the Bast-commits mailing list