Merge pull request #505 from BenMorel/fix-errors
Fix errors in JoinClassPathExpression and SqlWalker
This commit is contained in:
commit
6949a95782
@ -40,6 +40,6 @@ class JoinClassPathExpression extends Node
|
|||||||
|
|
||||||
public function dispatch($walker)
|
public function dispatch($walker)
|
||||||
{
|
{
|
||||||
return $sqlWalker->walkJoinPathExpression($this);
|
return $walker->walkJoinPathExpression($this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1172,7 +1172,7 @@ class SqlWalker implements TreeWalker
|
|||||||
switch (true) {
|
switch (true) {
|
||||||
case ($expr instanceof AST\PathExpression):
|
case ($expr instanceof AST\PathExpression):
|
||||||
if ($expr->type !== AST\PathExpression::TYPE_STATE_FIELD) {
|
if ($expr->type !== AST\PathExpression::TYPE_STATE_FIELD) {
|
||||||
throw QueryException::invalidPathExpression($expr->type);
|
throw QueryException::invalidPathExpression($expr);
|
||||||
}
|
}
|
||||||
|
|
||||||
$fieldName = $expr->field;
|
$fieldName = $expr->field;
|
||||||
@ -1213,7 +1213,6 @@ class SqlWalker implements TreeWalker
|
|||||||
case ($expr instanceof AST\SimpleArithmeticExpression):
|
case ($expr instanceof AST\SimpleArithmeticExpression):
|
||||||
case ($expr instanceof AST\ArithmeticTerm):
|
case ($expr instanceof AST\ArithmeticTerm):
|
||||||
case ($expr instanceof AST\ArithmeticFactor):
|
case ($expr instanceof AST\ArithmeticFactor):
|
||||||
case ($expr instanceof AST\ArithmeticPrimary):
|
|
||||||
case ($expr instanceof AST\Literal):
|
case ($expr instanceof AST\Literal):
|
||||||
case ($expr instanceof AST\NullIfExpression):
|
case ($expr instanceof AST\NullIfExpression):
|
||||||
case ($expr instanceof AST\CoalesceExpression):
|
case ($expr instanceof AST\CoalesceExpression):
|
||||||
@ -1513,7 +1512,6 @@ class SqlWalker implements TreeWalker
|
|||||||
case ($expr instanceof AST\SimpleArithmeticExpression):
|
case ($expr instanceof AST\SimpleArithmeticExpression):
|
||||||
case ($expr instanceof AST\ArithmeticTerm):
|
case ($expr instanceof AST\ArithmeticTerm):
|
||||||
case ($expr instanceof AST\ArithmeticFactor):
|
case ($expr instanceof AST\ArithmeticFactor):
|
||||||
case ($expr instanceof AST\ArithmeticPrimary):
|
|
||||||
case ($expr instanceof AST\Literal):
|
case ($expr instanceof AST\Literal):
|
||||||
case ($expr instanceof AST\NullIfExpression):
|
case ($expr instanceof AST\NullIfExpression):
|
||||||
case ($expr instanceof AST\CoalesceExpression):
|
case ($expr instanceof AST\CoalesceExpression):
|
||||||
|
Loading…
Reference in New Issue
Block a user