| Fey documentation | Contained in the Fey distribution. |
Fey::SQL::Fragment::Where::SubgroupStart - Represents the start of a subgroup in a WHERE clause
version 0.40
This class represents the start of a subgroup in a WHERE clause
It is intended solely for internal use in Fey::SQL objects, and as such is not intended for public use.
See Fey for details on how to report bugs.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
| Fey documentation | Contained in the Fey distribution. |
package Fey::SQL::Fragment::Where::SubgroupStart; BEGIN { $Fey::SQL::Fragment::Where::SubgroupStart::VERSION = '0.40'; } use strict; use warnings; use namespace::autoclean; use Moose; my $Paren = '('; sub sql { return $Paren; } __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: Represents the start of a subgroup in a WHERE clause
__END__