Добавлена поддержка оператора UNION для postgres. Доступен только в операциях с IN
This commit is contained in:
parent
fee2cbe6b4
commit
ea6a8f78aa
4 changed files with 8 additions and 3 deletions
|
@ -45,7 +45,7 @@ class InExpression extends Node
|
|||
public $literals = array();
|
||||
|
||||
/**
|
||||
* @var Subselect|null
|
||||
* @var array<Subselect>|null
|
||||
*/
|
||||
public $subselect;
|
||||
|
||||
|
|
|
@ -109,6 +109,7 @@ class Lexer extends \Doctrine\Common\Lexer
|
|||
const T_WITH = 155;
|
||||
const T_PARTIAL = 156;
|
||||
const T_NEW = 157;
|
||||
const T_UNION = 158;
|
||||
|
||||
/**
|
||||
* Creates a new query scanner object.
|
||||
|
|
|
@ -3063,7 +3063,11 @@ class Parser
|
|||
$this->match(Lexer::T_OPEN_PARENTHESIS);
|
||||
|
||||
if ($this->lexer->isNextToken(Lexer::T_SELECT)) {
|
||||
$inExpression->subselect = $this->Subselect();
|
||||
$inExpression->subselect = [$this->Subselect()];
|
||||
while ($this->lexer->isNextToken(Lexer::T_UNION)) {
|
||||
$this->match(Lexer::T_UNION);
|
||||
$inExpression->subselect[] = $this->Subselect();
|
||||
}
|
||||
} else {
|
||||
$literals = array();
|
||||
$literals[] = $this->InParameter();
|
||||
|
|
|
@ -2048,7 +2048,7 @@ class SqlWalker implements TreeWalker
|
|||
$sql = $this->walkArithmeticExpression($inExpr->expression) . ($inExpr->not ? ' NOT' : '') . ' IN (';
|
||||
|
||||
$sql .= ($inExpr->subselect)
|
||||
? $this->walkSubselect($inExpr->subselect)
|
||||
? implode(' UNION ', array_map(function ($subselect) {return $this->walkSubselect($subselect);}, $inExpr->subselect))
|
||||
: implode(', ', array_map(array($this, 'walkInParameter'), $inExpr->literals));
|
||||
|
||||
$sql .= ')';
|
||||
|
|
Loading…
Add table
Reference in a new issue