caldrin: Maik Hentsche <maik.hentsche@amd.com>
castaway: Jess Robinson <castaway@desert-island.me.uk>
chorny: Alexandr Ciornii <alexchorny@gmail.com>
+cj: C.J. Adams-Collier <cjcollier@cpan.org>
claco: Christopher H. Laco <claco@cpan.org>
clkao: CL Kao <clkao@clkao.org>
Ctrl-O http://ctrlo.com/
* Misc
- Remove warning about potential side effects of RT#79576 (scheduled)
- - Various doc improvements (GH#72)
+ - Various doc improvements (GH#71, GH#72)
- Skip tests in a way more intelligent and speedy manner when optional
dependencies are missing
- Make the Optional::Dependencies error messages cpanm-friendly
as => [qw(some_column dbic_slot)]
If you want to individually retrieve related columns (in essence perform
-manual prefetch) you have to make sure to specify the correct inflation slot
+manual L</prefetch>) you have to make sure to specify the correct inflation slot
chain such that it matches existing relationships:
my $rs = $schema->resultset('Artist')->search({}, {
# required to tell DBIC to collapse has_many relationships
collapse => 1,
- join => { cds => 'tracks'},
+ join => { cds => 'tracks' },
'+columns' => {
'cds.cdid' => 'cds.cdid',
'cds.tracks.title' => 'tracks.title',