Fix RT#64500
Peter Rabbitson [Thu, 13 Jan 2011 11:35:36 +0000 (12:35 +0100)]
Changes
lib/DBIx/Class.pm
lib/DBIx/Class/Manual/Features.pod

diff --git a/Changes b/Changes
index b2a1652..09663a6 100644 (file)
--- 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
index cf95368..9fc06fb 100644 (file)
@@ -402,6 +402,8 @@ Squeeks <squeek@cpan.org>
 
 sszabo: Stephan Szabo <sszabo@bigpanda.com>
 
+talexb: Alex Beamish <talexb@gmail.com>
+
 teejay : Aaron Trevena <teejay@cpan.org>
 
 Todd Lipcon
index 6f96d73..4a8d6f1 100644 (file)
@@ -597,7 +597,7 @@ See L<DBIx::Class::ResultSetColumn>
  for (@res) {
     say $_->price . ' ' . $_->genre;
     say $_->get_column('max_price');
-    say $_->get_column('min_price');
+    say $_->get_column('avg_price');
  }
 
 See L<DBIx::Class::ResultSet/select>, L<DBIx::Class::ResultSet/as>, and