line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::DBIx::Class::Example::Schema::ResultSet; { |
2
|
|
|
|
|
|
|
|
3
|
15
|
|
|
15
|
|
71
|
use strict; |
|
15
|
|
|
|
|
24
|
|
|
15
|
|
|
|
|
351
|
|
4
|
15
|
|
|
15
|
|
56
|
use warnings; |
|
15
|
|
|
|
|
25
|
|
|
15
|
|
|
|
|
327
|
|
5
|
|
|
|
|
|
|
|
6
|
15
|
|
|
15
|
|
56
|
use base 'DBIx::Class::ResultSet'; |
|
15
|
|
|
|
|
14
|
|
|
15
|
|
|
|
|
1436
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub hri_dump { |
9
|
1
|
|
|
1
|
0
|
7333839
|
(shift)->search ({}, { |
10
|
|
|
|
|
|
|
result_class => 'DBIx::Class::ResultClass::HashRefInflator' |
11
|
|
|
|
|
|
|
}); |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
} 1 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__END__ |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Test::DBIx::Class::Example::Schema::ResultSet - A base ResultSet Class |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 SYNOPSIS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
use base 'Test::DBIx::Class::Example::Schema::ResultSet'; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
All ResultSet classes will inherit from this. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SEE ALSO |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The following modules or resources may be of interest. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
L<DBIx::Class::ResultSet> |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
John Napiorkowski C<< <jjnapiork@cpan.org> >> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Copyright 2009, John Napiorkowski C<< <jjnapiork@cpan.org> >> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
44
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|