X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Fjoin_type.t;h=48f9712f9f4bf0a27098a966a5647e98860c94fb;hb=4a233f3019d2baa4bf2abee0c873c74d5cdf3a11;hp=1698d6f7757e36082e9145cf776cce3103e94eaf;hpb=908aa1bb761ec1da5c061fe9f687598e3f1934bc;p=dbsrgits%2FDBIx-Class.git diff --git a/t/prefetch/join_type.t b/t/prefetch/join_type.t index 1698d6f..48f9712 100644 --- a/t/prefetch/join_type.t +++ b/t/prefetch/join_type.t @@ -1,4 +1,5 @@ use warnings; +use strict; use Test::More; use lib qw(t/lib); @@ -38,6 +39,7 @@ is_same_sql_bind ( JOIN artist artist ON artist.artistid = me.artist LEFT JOIN cd cds ON cds.artist = artist.artistid LEFT JOIN artist artist_2 ON artist_2.artistid = cds.artist + ORDER BY cds.artist, cds.year ASC )', [], );