projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
56e2b93
)
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
patch
|
blob
|
blame
|
history
t/examples/Schema/testdb.pl
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Manual/Example.pod
b/lib/DBIx/Class/Manual/Example.pod
index
2fa0492
..
884d7fc
100644
(file)
--- 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
(file)
--- 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) {