PHPSQLParser\processors\DefaultProcessor::processUnion PHP 메소드

processUnion() 보호된 메소드

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);
    }