Justin Guenther <jguenther@agr.gc.ca>
+Daisuke Murase <typester@cpan.org>
+
=head1 LICENSE
You may distribute this code under the same terms as Perl itself.
$value;
}
+=head2 get_columns
+
+=cut
+
+sub get_columns {
+ my $self = shift;
+ my %data = $self->next::method(@_);
+
+ for (@{ $self->force_utf8_columns }) {
+ Encode::_utf8_on($data{$_}) if $data{$_} and !Encode::is_utf8($_);
+ }
+
+ %data;
+}
+
=head2 store_column
=cut