From: Peter Rabbitson Date: Wed, 12 Aug 2009 14:11:24 +0000 (+0000) Subject: Remove needless inflate in Ordered X-Git-Tag: v0.08109~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2adb95f6e8d18d6d531b9baf3e0e816a26f00ce4;p=dbsrgits%2FDBIx-Class.git Remove needless inflate in Ordered --- diff --git a/lib/DBIx/Class/Ordered.pm b/lib/DBIx/Class/Ordered.pm index ed726de..59162bb 100644 --- a/lib/DBIx/Class/Ordered.pm +++ b/lib/DBIx/Class/Ordered.pm @@ -564,7 +564,7 @@ sub update { # these steps are necessary to keep the external appearance of # ->update($upd) so that other things overloading update() will # work properly - my %original_values = $self->get_inflated_columns; + my %original_values = $self->get_columns; my %existing_changes = $self->get_dirty_columns; # See if any of the *supplied* changes would affect the ordering