From: Peter Rabbitson Date: Thu, 13 Jan 2011 11:35:36 +0000 (+0100) Subject: Fix RT#64500 X-Git-Tag: v0.08127~21 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=a9e8284f478f029f6f50c9423c3fa20aa3256d4a Fix RT#64500 --- diff --git a/Changes b/Changes index b2a1652..09663a6 100644 --- a/Changes +++ b/Changes @@ -15,6 +15,7 @@ Revision history for DBIx::Class - Allow populate to skip empty has_many relationships which makes it easier to pass HashRefInflator data directly to ->populate - Improve freeze/thaw semantics and error messages (RT#62546) + - Fix inconsistency in Manual::Features (RT#64500) * Misc - Fix test warning on win32 - at this point the test suite is diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index cf95368..9fc06fb 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -402,6 +402,8 @@ Squeeks sszabo: Stephan Szabo +talexb: Alex Beamish + teejay : Aaron Trevena Todd Lipcon diff --git a/lib/DBIx/Class/Manual/Features.pod b/lib/DBIx/Class/Manual/Features.pod index 6f96d73..4a8d6f1 100644 --- a/lib/DBIx/Class/Manual/Features.pod +++ b/lib/DBIx/Class/Manual/Features.pod @@ -597,7 +597,7 @@ See L for (@res) { say $_->price . ' ' . $_->genre; say $_->get_column('max_price'); - say $_->get_column('min_price'); + say $_->get_column('avg_price'); } See L, L, and