line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Helper::ResultSet::Union; |
2
|
|
|
|
|
|
|
$DBIx::Class::Helper::ResultSet::Union::VERSION = '2.036000'; |
3
|
56
|
|
|
56
|
|
26506
|
use parent 'DBIx::Class::Helper::ResultSet::SetOperations'; |
|
56
|
|
|
|
|
118
|
|
|
56
|
|
|
|
|
290
|
|
4
|
|
|
|
|
|
|
|
5
|
56
|
|
|
56
|
|
2408
|
use Carp::Clan; |
|
56
|
|
|
|
|
126
|
|
|
56
|
|
|
|
|
312
|
|
6
|
|
|
|
|
|
|
carp 'This module is deprecated! Please use the namespaced version instead!' if $VERSION >= 3; |
7
|
|
|
|
|
|
|
croak 'This module is deprecated! Please use the namespaced version instead!' if $VERSION >= 4; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# ABSTRACT: (DEPRECATED) Get rid of search context issues |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__END__ |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=pod |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
DBIx::Class::Helper::ResultSet::Union - (DEPRECATED) Get rid of search context issues |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This component has been suplanted by |
24
|
|
|
|
|
|
|
L<DBIx::Class::Helper::ResultSet::SetOperations>. In the next major version |
25
|
|
|
|
|
|
|
(3) we will begin issuing a warning on it's use. In the major version after |
26
|
|
|
|
|
|
|
that (4) we will remove it entirely. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 AUTHOR |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com> |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This software is copyright (c) 2020 by Arthur Axel "fREW" Schmidt. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
37
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |