PHPSQLParser\processors\DefaultProcessor::processUnion PHP Method

processUnion() protected method

protected processUnion ( $tokens )
    protected function processUnion($tokens)
    {
        // this is the highest level lexical analysis. This is the part of the
        // code which finds UNION and UNION ALL query parts
        $processor = new UnionProcessor($this->options);
        return $processor->process($tokens);
    }