Minor documentation patch by Flavio Poletti - remove useless prefetch from examples
Peter Rabbitson [Wed, 8 Oct 2008 09:46:18 +0000 (09:46 +0000)]
lib/DBIx/Class/Manual/Example.pod
t/examples/Schema/testdb.pl

index 2fa0492..884d7fc 100644 (file)
@@ -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) {
index b31773d..9ca3e39 100644 (file)
@@ -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) {