line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Fey::SQL::Fragment::Where::SubgroupStart; |
2
|
|
|
|
|
|
|
|
3
|
27
|
|
|
27
|
|
140
|
use strict; |
|
27
|
|
|
|
|
42
|
|
|
27
|
|
|
|
|
1287
|
|
4
|
27
|
|
|
27
|
|
140
|
use warnings; |
|
27
|
|
|
|
|
45
|
|
|
27
|
|
|
|
|
848
|
|
5
|
27
|
|
|
27
|
|
119
|
use namespace::autoclean; |
|
27
|
|
|
|
|
43
|
|
|
27
|
|
|
|
|
224
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.43'; |
8
|
|
|
|
|
|
|
|
9
|
27
|
|
|
27
|
|
2553
|
use Moose 2.1200; |
|
27
|
|
|
|
|
744
|
|
|
27
|
|
|
|
|
200
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
my $Paren = '('; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub sql { |
14
|
5
|
|
|
5
|
0
|
91
|
return $Paren; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->meta()->make_immutable(); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
# ABSTRACT: Represents the start of a subgroup in a WHERE clause |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 NAME |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Fey::SQL::Fragment::Where::SubgroupStart - Represents the start 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 start 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 |