From 2556820a29d4a880dad3bbed4e6402495f642747 Mon Sep 17 00:00:00 2001
From: Flavio Poletti <flavio@polettix.it>
Date: Thu, 2 Oct 2008 09:33:15 +0200
Subject: [PATCH] Removed "prefetch" from example.

---
 lib/DBIx/Class/Manual/Example.pod |    2 --
 t/examples/Schema/testdb.pl       |    2 --
 2 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/lib/DBIx/Class/Manual/Example.pod b/lib/DBIx/Class/Manual/Example.pod
index 2fa0492..884d7fc 100755
--- 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 100755
--- 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) {
-- 
1.5.5.4

