package Fey::SQL::Fragment::Where::Boolean; use strict; use warnings; our $VERSION = '0.34'; use Fey::Types; use Moose; has 'comparison' => ( is => 'ro', isa => 'Fey::Types::WhereBoolean', required => 1, ); sub sql { return $_[0]->comparison(); } no Moose; __PACKAGE__->meta()->make_immutable(); 1; __END__ =head1 NAME Fey::SQL::Fragment::Where::Boolean - Represents an AND or OR in a WHERE clause =head1 DESCRIPTION This class represents a subselect an AND or OR in a WHERE clause. It is intended solely for internal use in L objects, and as such is not intended for public use. =head1 AUTHOR Dave Rolsky, =head1 BUGS See L for details on how to report bugs. =head1 COPYRIGHT & LICENSE Copyright 2006-2009 Dave Rolsky, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut