MT#4135 Only load certain Helper::ResultSet::*

this fixes the bug in certain versions, when we did
$resultset->getColumn(*)->all
which was introduced  by DBIx::Class::Helper::ResultSet::RemoveColumns

this time we will not break anything again

could probably also save some ram (MT#4225)
agranig/peering-route
Gerhard Jungwirth 12 years ago
parent 7325ac66cf
commit 37a15cdb73

@ -4,4 +4,8 @@ extends 'DBIx::Class::ResultSet';
our $VERSION = '2.006';
__PACKAGE__->load_components('Helper::ResultSet');
__PACKAGE__->load_components(
'Helper::ResultSet::IgnoreWantarray',
'Helper::ResultSet::SetOperations',
);

Loading…
Cancel
Save