2017-06-09 15:09:41 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the MIT license. For more information, see
|
|
|
|
* <http://www.doctrine-project.org>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Query\AST\Functions;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Query\Parser;
|
|
|
|
use Doctrine\ORM\Query\SqlWalker;
|
|
|
|
use Doctrine\ORM\Query\AST\AggregateExpression;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* "COUNT" "(" ["DISTINCT"] StringPrimary ")"
|
|
|
|
*
|
2017-06-19 09:00:00 +01:00
|
|
|
* @since 2.6
|
2017-06-09 15:09:41 +01:00
|
|
|
* @author Mathew Davies <thepixeldeveloper@icloud.com>
|
|
|
|
*/
|
2017-06-19 11:11:42 +01:00
|
|
|
final class CountFunction extends FunctionNode
|
2017-06-09 15:09:41 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var AggregateExpression
|
|
|
|
*/
|
2017-06-19 09:00:00 +01:00
|
|
|
private $aggregateExpression;
|
2017-06-09 15:09:41 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2017-06-19 09:00:00 +01:00
|
|
|
public function getSql(SqlWalker $sqlWalker): string
|
2017-06-09 15:09:41 +01:00
|
|
|
{
|
|
|
|
return $this->aggregateExpression->dispatch($sqlWalker);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2017-06-19 09:00:00 +01:00
|
|
|
public function parse(Parser $parser): void
|
2017-06-09 15:09:41 +01:00
|
|
|
{
|
|
|
|
$this->aggregateExpression = $parser->AggregateExpression();
|
|
|
|
}
|
|
|
|
}
|