From: Dagfinn Ilmari Mannsåker Date: Thu, 11 Dec 2008 16:51:29 +0000 (+0000) Subject: Use join_type => 'LEFT' rather than 'LEFT OUTER' for consistency with X-Git-Tag: 0.04999_07~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=53751ffe20fcc7a21ef4028c6eadafcbbfb9d129;p=dbsrgits%2FDBIx-Class-Schema-Loader.git Use join_type => 'LEFT' rather than 'LEFT OUTER' for consistency with the rest of DBIC. --- diff --git a/lib/DBIx/Class/Schema/Loader/RelBuilder.pm b/lib/DBIx/Class/Schema/Loader/RelBuilder.pm index 553a58e..4e917a6 100644 --- a/lib/DBIx/Class/Schema/Loader/RelBuilder.pm +++ b/lib/DBIx/Class/Schema/Loader/RelBuilder.pm @@ -218,7 +218,7 @@ sub generate_code { args => [ $remote_relname, $remote_class, \%cond, - $nullable ? { join_type => 'LEFT OUTER' } : () + $nullable ? { join_type => 'LEFT' } : () ], } );