Fey::SQL::Fragment::Where::SubgroupEnd - Represents the end of a subgroup in a WHERE clause


Fey documentation Contained in the Fey distribution.

Index


Code Index:

NAME

Top

Fey::SQL::Fragment::Where::SubgroupEnd - Represents the end of a subgroup in a WHERE clause

VERSION

Top

version 0.40

DESCRIPTION

Top

This class represents the end 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.

BUGS

Top

See Fey for details on how to report bugs.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Fey documentation Contained in the Fey distribution.

package Fey::SQL::Fragment::Where::SubgroupEnd;
BEGIN {
  $Fey::SQL::Fragment::Where::SubgroupEnd::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 end of a subgroup in a WHERE clause




__END__