Use join_type => 'LEFT' rather than 'LEFT OUTER' for consistency with
Dagfinn Ilmari Mannsåker [Thu, 11 Dec 2008 16:51:29 +0000 (16:51 +0000)]
the rest of DBIC.

lib/DBIx/Class/Schema/Loader/RelBuilder.pm

index 553a58e..4e917a6 100644 (file)
@@ -218,7 +218,7 @@ sub generate_code {
               args => [ $remote_relname,
                         $remote_class,
                         \%cond,
-                        $nullable ? { join_type => 'LEFT OUTER' } : ()
+                        $nullable ? { join_type => 'LEFT' } : ()
               ],
             }
         );