Dumped anti-NEXT-breakage hack in CDBICompat stringify
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / CDBICompat / Retrieve.pm
CommitLineData
656796f2 1package DBIx::Class::CDBICompat::Retrieve;
2
3use strict;
4use warnings FATAL => 'all';
5
6sub retrieve { shift->find(@_) }
3125eb1f 7sub retrieve_all { shift->search }
656796f2 8sub retrieve_from_sql { shift->search_literal(@_) }
9
3125eb1f 10sub count_all { shift->count }
cba994a1 11 # Contributed by Numa. No test for this though.
12
656796f2 131;