File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ caelum: Rafael Kitover <rkitover@cpan.org>
43
43
caldrin: Maik Hentsche <maik.hentsche@amd.com>
44
44
castaway: Jess Robinson <castaway@desert-island.me.uk>
45
45
chorny: Alexandr Ciornii <alexchorny@gmail.com>
46
+ cj: C.J. Adams-Collier <cjcollier@cpan.org>
46
47
claco: Christopher H. Laco <claco@cpan.org>
47
48
clkao: CL Kao <clkao@clkao.org>
48
49
Ctrl-O http://ctrlo.com/
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Revision history for DBIx::Class
28
28
29
29
* Misc
30
30
- Remove warning about potential side effects of RT#79576 (scheduled)
31
- - Various doc improvements (GH#72)
31
+ - Various doc improvements (GH#71, GH# 72)
32
32
- Skip tests in a way more intelligent and speedy manner when optional
33
33
dependencies are missing
34
34
- Make the Optional::Dependencies error messages cpanm-friendly
Original file line number Diff line number Diff line change @@ -4083,13 +4083,13 @@ is the same as
4083
4083
as => [qw(some_column dbic_slot)]
4084
4084
4085
4085
If you want to individually retrieve related columns (in essence perform
4086
- manual prefetch) you have to make sure to specify the correct inflation slot
4086
+ manual L</ prefetch> ) you have to make sure to specify the correct inflation slot
4087
4087
chain such that it matches existing relationships:
4088
4088
4089
4089
my $rs = $schema->resultset('Artist')->search({}, {
4090
4090
# required to tell DBIC to collapse has_many relationships
4091
4091
collapse => 1,
4092
- join => { cds => 'tracks'},
4092
+ join => { cds => 'tracks' },
4093
4093
'+columns' => {
4094
4094
'cds.cdid' => 'cds.cdid',
4095
4095
'cds.tracks.title' => 'tracks.title',
You can’t perform that action at this time.
0 commit comments