Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ InvalidFieldNameException
return new UniqueConstraintViolationException($message, $exception);case '1054':case '1166':case '1611':return new InvalidFieldNameException($message, $exception);case '1052':case '1060':case '1110':return new NonUniqueFieldNameException($message, $exception);
in
vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingDriverForV2.php
->
convertException
(line 107)
* {@inheritdoc}*/public function convertException($message, DriverException $exception): DBALDriverException{if ($this->decoratedDriver instanceof ExceptionConverterDriver) {return $this->decoratedDriver->convertException($message, $exception);}return new DBALDriverException($message, $exception);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
->
convertException
(line 182)
if ($driverEx instanceof DriverException) {return $driverEx;}if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DeprecatedDriverException) {return $driver->convertException($msg, $driverEx);}return new Exception($msg, 0, $driverEx);}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
::
wrapException
(line 159)
$msg .= ' with params ' . self::formatParameters($params);}$msg .= ":\n\n" . $driverEx->getMessage();return self::wrapException($driver, $driverEx, $msg);}/*** @deprecated*
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
::
driverExceptionDuringQuery
(line 2226)
$this->throw(Exception::driverExceptionDuringQuery($this->_driver,$e,$sql,$this->resolveParams($params, $types)));}/**
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
handleExceptionDuringQuery
(line 1313)
} else {$stmt = $connection->query($sql);}} catch (Throwable $e) {$this->handleExceptionDuringQuery($e,$sql,$params,$types);}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
executeQuery
(line 47)
** @return ResultStatement*/public function execute(Connection $conn, array $params, array $types){return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
execute
(line 330)
$sqlParams,$types,$this->_em->getConnection()->getParams());return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1074)
$cache->save($cacheKey, $result, $queryCacheProfile->getLifetime());};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1027)
{if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 863)
* @throws NonUniqueResultException If the query result is not unique.* @throws NoResultException If the query returned no result and hydration mode is not HYDRATE_SINGLE_SCALAR.*/public function getSingleResult($hydrationMode = null){$result = $this->execute(null, $hydrationMode);if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {throw new NoResultException();}
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
getSingleResult
(line 892)
* @throws NoResultException If the query returned no result.* @throws NonUniqueResultException If the query result is not unique.*/public function getSingleScalarResult(){return $this->getSingleResult(self::HYDRATE_SINGLE_SCALAR);}/*** Sets a query hint. If the hint name is not recognized, it is silently ignored.*
}$r = $query->getQuery();try {return $r->getSingleScalarResult();} catch (NoResultException|NonUniqueResultException $e) {return 0;}}
public function getCommentsCountData(string $unid): array{$commentRepo = App::em()->getRepository(CommentEntity::class);return ['questions' => $commentRepo->getCommentCountData($unid, App::getCurLocale(), false),'answers' => $commentRepo->getCommentCountData($unid, App::getCurLocale())];}/**
'itemsNoImg' => [],'itemsNoImgCount' => 0,//(int)$itemsNoImgCount,'itemsIds' => $itemsIds,'alsoViewed' => null,'alsoViewedUrl' => App::generateUrl('app_article_info', ['collectionId' => $collection['id']]),'commentsCounts' => $this->collectionService->getCommentsCountData($collection['unid'] ?? ''),'commentsBlockUrl' => App::generateUrl('app_comment_block',['entity' => $collection['id'],'type' => CommentableEntityTypes::COLLECTION,
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}Request::enableHttpMethodParameterOverride();$request = Request::createFromGlobals();define('BASE_URL', $request->getScheme() . '://tile.expert/');$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
<?phprequire '../public/index.php';
Doctrine\DBAL\Driver\PDO\ Exception
*/final class Exception extends PDOException{public static function new(\PDOException $exception): self{return new self($exception);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
::
new
(line 119)
public function execute($params = null){try {return parent::execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}}/*** {@inheritdoc}
in
vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/AbstractTracingStatement.php
->
execute
(line 77)
if (null !== $span) {$span = $span->startChild($spanContext);}try {return $callback(...$args);} finally {if (null !== $span) {$span->finish();}}
in
vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingStatementForV2.php
->
traceFunction
(line 124)
$spanContext = new SpanContext();$spanContext->setOp(self::SPAN_OP_STMT_EXECUTE);$spanContext->setDescription($this->sqlQuery);$spanContext->setData($this->spanData);return $this->traceFunction($spanContext, [$this->decoratedStatement, 'execute'], $params);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
execute
(line 1304)
[$sql, $params, $types] = SQLParserUtils::expandListParameters($sql, $params, $types);$stmt = $connection->prepare($sql);if ($types) {$this->_bindTypedValues($stmt, $params, $types);$stmt->execute();} else {$stmt->execute($params);}} else {$stmt = $connection->query($sql);
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
executeQuery
(line 47)
** @return ResultStatement*/public function execute(Connection $conn, array $params, array $types){return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
execute
(line 330)
$sqlParams,$types,$this->_em->getConnection()->getParams());return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1074)
$cache->save($cacheKey, $result, $queryCacheProfile->getLifetime());};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1027)
{if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 863)
* @throws NonUniqueResultException If the query result is not unique.* @throws NoResultException If the query returned no result and hydration mode is not HYDRATE_SINGLE_SCALAR.*/public function getSingleResult($hydrationMode = null){$result = $this->execute(null, $hydrationMode);if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {throw new NoResultException();}
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
getSingleResult
(line 892)
* @throws NoResultException If the query returned no result.* @throws NonUniqueResultException If the query result is not unique.*/public function getSingleScalarResult(){return $this->getSingleResult(self::HYDRATE_SINGLE_SCALAR);}/*** Sets a query hint. If the hint name is not recognized, it is silently ignored.*
}$r = $query->getQuery();try {return $r->getSingleScalarResult();} catch (NoResultException|NonUniqueResultException $e) {return 0;}}
public function getCommentsCountData(string $unid): array{$commentRepo = App::em()->getRepository(CommentEntity::class);return ['questions' => $commentRepo->getCommentCountData($unid, App::getCurLocale(), false),'answers' => $commentRepo->getCommentCountData($unid, App::getCurLocale())];}/**
'itemsNoImg' => [],'itemsNoImgCount' => 0,//(int)$itemsNoImgCount,'itemsIds' => $itemsIds,'alsoViewed' => null,'alsoViewedUrl' => App::generateUrl('app_article_info', ['collectionId' => $collection['id']]),'commentsCounts' => $this->collectionService->getCommentsCountData($collection['unid'] ?? ''),'commentsBlockUrl' => App::generateUrl('app_comment_block',['entity' => $collection['id'],'type' => CommentableEntityTypes::COLLECTION,
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}Request::enableHttpMethodParameterOverride();$request = Request::createFromGlobals();define('BASE_URL', $request->getScheme() . '://tile.expert/');$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
<?phprequire '../public/index.php';
PDOException
*/#[ReturnTypeWillChange]public function execute($params = null){try {return parent::execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
->
execute
(line 117)
*/#[ReturnTypeWillChange]public function execute($params = null){try {return parent::execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}}
in
vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/AbstractTracingStatement.php
->
execute
(line 77)
if (null !== $span) {$span = $span->startChild($spanContext);}try {return $callback(...$args);} finally {if (null !== $span) {$span->finish();}}
in
vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingStatementForV2.php
->
traceFunction
(line 124)
$spanContext = new SpanContext();$spanContext->setOp(self::SPAN_OP_STMT_EXECUTE);$spanContext->setDescription($this->sqlQuery);$spanContext->setData($this->spanData);return $this->traceFunction($spanContext, [$this->decoratedStatement, 'execute'], $params);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
execute
(line 1304)
[$sql, $params, $types] = SQLParserUtils::expandListParameters($sql, $params, $types);$stmt = $connection->prepare($sql);if ($types) {$this->_bindTypedValues($stmt, $params, $types);$stmt->execute();} else {$stmt->execute($params);}} else {$stmt = $connection->query($sql);
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
executeQuery
(line 47)
** @return ResultStatement*/public function execute(Connection $conn, array $params, array $types){return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
execute
(line 330)
$sqlParams,$types,$this->_em->getConnection()->getParams());return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1074)
$cache->save($cacheKey, $result, $queryCacheProfile->getLifetime());};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1027)
{if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 863)
* @throws NonUniqueResultException If the query result is not unique.* @throws NoResultException If the query returned no result and hydration mode is not HYDRATE_SINGLE_SCALAR.*/public function getSingleResult($hydrationMode = null){$result = $this->execute(null, $hydrationMode);if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {throw new NoResultException();}
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
getSingleResult
(line 892)
* @throws NoResultException If the query returned no result.* @throws NonUniqueResultException If the query result is not unique.*/public function getSingleScalarResult(){return $this->getSingleResult(self::HYDRATE_SINGLE_SCALAR);}/*** Sets a query hint. If the hint name is not recognized, it is silently ignored.*
}$r = $query->getQuery();try {return $r->getSingleScalarResult();} catch (NoResultException|NonUniqueResultException $e) {return 0;}}
public function getCommentsCountData(string $unid): array{$commentRepo = App::em()->getRepository(CommentEntity::class);return ['questions' => $commentRepo->getCommentCountData($unid, App::getCurLocale(), false),'answers' => $commentRepo->getCommentCountData($unid, App::getCurLocale())];}/**
'itemsNoImg' => [],'itemsNoImgCount' => 0,//(int)$itemsNoImgCount,'itemsIds' => $itemsIds,'alsoViewed' => null,'alsoViewedUrl' => App::generateUrl('app_article_info', ['collectionId' => $collection['id']]),'commentsCounts' => $this->collectionService->getCommentsCountData($collection['unid'] ?? ''),'commentsBlockUrl' => App::generateUrl('app_comment_block',['entity' => $collection['id'],'type' => CommentableEntityTypes::COLLECTION,
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}Request::enableHttpMethodParameterOverride();$request = Request::createFromGlobals();define('BASE_URL', $request->getScheme() . '://tile.expert/');$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
<?phprequire '../public/index.php';
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 22:34:06 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. {
"exception": {}
}
|
| INFO 22:34:06 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "7c8e5f"
},
"request_uri": "https://dev5.tile.expert/_profiler/7c8e5f?panel=exception",
"method": "GET"
}
|
| INFO 22:34:06 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. {
"exception": {}
}
|
| INFO 22:34:06 | php |
User Deprecated: Since symfony/framework-bundle 5.2: Accessing the "security.csrf.token_manager" service directly from the container is deprecated, use dependency injection instead. {
"exception": {}
}
|
| INFO 22:34:06 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead. {
"exception": {}
}
|
| INFO 22:34:06 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 22:34:06 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead. {
"exception": {}
}
|
Stack Traces 3
|
[3/3]
InvalidFieldNameException
|
|---|
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing 'SELECT COUNT(c0_.`id`) AS sclr_0 FROM `comment_refact` c0_ LEFT JOIN `user` u1_ ON c0_.user_id = u1_.id WHERE c0_.`locale` = ? AND c0_.`category` = ? AND c0_.`commentable_unid` = ? AND (u1_.`foreign_alias` IS NULL OR u1_.`foreign_alias` <> ?)' with params ["en", 1, "", ""]:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u1_.foreign_alias' in 'where clause'
at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:79
at Doctrine\DBAL\Driver\AbstractMySQLDriver->convertException()
(vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingDriverForV2.php:107)
at Sentry\SentryBundle\Tracing\Doctrine\DBAL\TracingDriverForV2->convertException()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:182)
at Doctrine\DBAL\DBALException::wrapException()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:159)
at Doctrine\DBAL\DBALException::driverExceptionDuringQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:2226)
at Doctrine\DBAL\Connection->handleExceptionDuringQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1313)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:47)
at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:330)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1074)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1027)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:863)
at Doctrine\ORM\AbstractQuery->getSingleResult()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:892)
at Doctrine\ORM\AbstractQuery->getSingleScalarResult()
(src/FlexApp/Repository/CommentRepository.php:101)
at FlexApp\Repository\CommentRepository->getCommentCountData()
(src/WebBundle/Service/CollectionService.php:80)
at WebBundle\Service\CollectionService->getCommentsCountData()
(src/WebBundle/Controller/TileController.php:457)
at WebBundle\Controller\TileController->indexAction()
(vendor/symfony/http-kernel/HttpKernel.php:163)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:34)
at require('/var/www/dev5.tile.expert/public/index.php')
(web/index.php:3)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u1_.foreign_alias' in 'where clause'
at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119)
at Doctrine\DBAL\Driver\PDOStatement->execute()
(vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/AbstractTracingStatement.php:77)
at Sentry\SentryBundle\Tracing\Doctrine\DBAL\AbstractTracingStatement->traceFunction()
(vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingStatementForV2.php:124)
at Sentry\SentryBundle\Tracing\Doctrine\DBAL\TracingStatementForV2->execute()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1304)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:47)
at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:330)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1074)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1027)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:863)
at Doctrine\ORM\AbstractQuery->getSingleResult()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:892)
at Doctrine\ORM\AbstractQuery->getSingleScalarResult()
(src/FlexApp/Repository/CommentRepository.php:101)
at FlexApp\Repository\CommentRepository->getCommentCountData()
(src/WebBundle/Service/CollectionService.php:80)
at WebBundle\Service\CollectionService->getCommentsCountData()
(src/WebBundle/Controller/TileController.php:457)
at WebBundle\Controller\TileController->indexAction()
(vendor/symfony/http-kernel/HttpKernel.php:163)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:34)
at require('/var/www/dev5.tile.expert/public/index.php')
(web/index.php:3)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u1_.foreign_alias' in 'where clause'
at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117
at PDOStatement->execute()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117)
at Doctrine\DBAL\Driver\PDOStatement->execute()
(vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/AbstractTracingStatement.php:77)
at Sentry\SentryBundle\Tracing\Doctrine\DBAL\AbstractTracingStatement->traceFunction()
(vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingStatementForV2.php:124)
at Sentry\SentryBundle\Tracing\Doctrine\DBAL\TracingStatementForV2->execute()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1304)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:47)
at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:330)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1074)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1027)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:863)
at Doctrine\ORM\AbstractQuery->getSingleResult()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:892)
at Doctrine\ORM\AbstractQuery->getSingleScalarResult()
(src/FlexApp/Repository/CommentRepository.php:101)
at FlexApp\Repository\CommentRepository->getCommentCountData()
(src/WebBundle/Service/CollectionService.php:80)
at WebBundle\Service\CollectionService->getCommentsCountData()
(src/WebBundle/Controller/TileController.php:457)
at WebBundle\Controller\TileController->indexAction()
(vendor/symfony/http-kernel/HttpKernel.php:163)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:34)
at require('/var/www/dev5.tile.expert/public/index.php')
(web/index.php:3)
|