The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

CQL::OrNode - represents an OR node in a CQL parse tree

SYNOPSIS

    use CQL::OrNode;
    my $node = CQL::OrNode->new( left => $left, right => $right );

DESCRIPTION

CQL::OrNode inherits from CQL::BooleanNode, where you'll find most of the functionality.