From: Peter Rabbitson Date: Wed, 8 Oct 2008 09:46:18 +0000 (+0000) Subject: Minor documentation patch by Flavio Poletti - remove useless prefetch from examples X-Git-Tag: v0.08240~328 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=10d690d1fe7982871290d495b50d467a09914bb1;p=dbsrgits%2FDBIx-Class.git Minor documentation patch by Flavio Poletti - remove useless prefetch from examples --- diff --git a/lib/DBIx/Class/Manual/Example.pod b/lib/DBIx/Class/Manual/Example.pod index 2fa0492..884d7fc 100644 --- a/lib/DBIx/Class/Manual/Example.pod +++ b/lib/DBIx/Class/Manual/Example.pod @@ -220,7 +220,6 @@ testdb.pl: }, { join => [qw/ cd /], - prefetch => [qw/ cd /] } ); while (my $track = $rs->next) { @@ -273,7 +272,6 @@ testdb.pl: }, { join => [qw/ artist /], - prefetch => [qw/ artist /] } ); while (my $cd = $rs->next) { diff --git a/t/examples/Schema/testdb.pl b/t/examples/Schema/testdb.pl index b31773d..9ca3e39 100644 --- a/t/examples/Schema/testdb.pl +++ b/t/examples/Schema/testdb.pl @@ -26,7 +26,6 @@ sub get_tracks_by_cd { }, { join => [qw/ cd /], - prefetch => [qw/ cd /] } ); while (my $track = $rs->next) { @@ -79,7 +78,6 @@ sub get_cds_by_artist { }, { join => [qw/ artist /], - prefetch => [qw/ artist /] } ); while (my $cd = $rs->next) {