예제 #1
0
 function visitSirelNodeFunctionsSum(Node\Functions\Sum $node)
 {
     return $this->platform->getSumExpression($this->visit($node->getChildren()));
 }
예제 #2
0
파일: ToSql.php 프로젝트: chh/sirel
 function visitSirelNodeFunctionsSum(Node\Functions\Sum $node)
 {
     return "SUM(" . $this->visit($node->getChildren()) . ")";
 }