line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Fey::SQL::Fragment::Where::SubgroupEnd; |
2
|
|
|
|
|
|
|
|
3
|
27
|
|
|
27
|
|
134
|
use strict; |
|
27
|
|
|
|
|
42
|
|
|
27
|
|
|
|
|
1151
|
|
4
|
27
|
|
|
27
|
|
182
|
use warnings; |
|
27
|
|
|
|
|
43
|
|
|
27
|
|
|
|
|
836
|
|
5
|
27
|
|
|
27
|
|
135
|
use namespace::autoclean; |
|
27
|
|
|
|
|
38
|
|
|
27
|
|
|
|
|
202
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.43'; |
8
|
|
|
|
|
|
|
|
9
|
27
|
|
|
27
|
|
2421
|
use Moose 2.1200; |
|
27
|
|
|
|
|
767
|
|
|
27
|
|
|
|
|
204
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
my $Paren = ')'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub sql { |
14
|
5
|
|
|
5
|
0
|
49
|
return $Paren; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->meta()->make_immutable(); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
# ABSTRACT: Represents the end of a subgroup in a WHERE clause |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 NAME |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Fey::SQL::Fragment::Where::SubgroupEnd - Represents the end of a subgroup in a WHERE clause |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 VERSION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
version 0.43 |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This class represents the end of a subgroup in a WHERE clause |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
It is intended solely for internal use in L<Fey::SQL> objects, and as |
40
|
|
|
|
|
|
|
such is not intended for public use. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 BUGS |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
See L<Fey> for details on how to report bugs. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 AUTHOR |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This software is Copyright (c) 2011 - 2015 by Dave Rolsky. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This is free software, licensed under: |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |