From: Matt S Trout Date: Mon, 7 Oct 2013 13:58:34 +0000 (+0000) Subject: t/76joins.t - join_type inner now produces just JOIN X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=de857b7e6113de97d0cb5c05357bc3a03c412cb2;p=dbsrgits%2FDBIx-Class.git t/76joins.t - join_type inner now produces just JOIN --- diff --git a/t/76joins.t b/t/76joins.t index 0fd511f..5562bdc 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -54,8 +54,8 @@ my @j3 = ( [ { father => 'person', -join_type => 'inner' }, { 'father.person_id' => 'child.father_id' }, ], [ { mother => 'person', -join_type => 'inner' }, { 'mother.person_id' => 'child.mother_id' } ], ); -$match = 'person child INNER JOIN person father ON ( father.person_id = ' - . 'child.father_id ) INNER JOIN person mother ON ( mother.person_id ' +$match = 'person child JOIN person father ON ( father.person_id = ' + . 'child.father_id ) JOIN person mother ON ( mother.person_id ' . '= child.mother_id )' ;