1
0
mirror of synced 2025-02-09 00:39:25 +03:00

DDC-3336 - removing explicit failure: 2.4 uses different column alias naming strategy logic

This commit is contained in:
Marco Pivetta 2014-12-05 17:29:18 +01:00
parent c398f8c2c2
commit f0e6408005

View File

@ -207,7 +207,7 @@ class LimitSubqueryOutputWalkerTest extends PaginationTestCase
$query->setHint(Query::HINT_CUSTOM_OUTPUT_WALKER, 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker');
$this->assertSame(
'SELECT DISTINCT id_0 FROM (SELECT a0_.id AS id_0, a0_.name AS name_1 FROM Author a0_ ORDER BY (1 - 1000) * 1 DESC) dctrn_result',
'SELECT DISTINCT id0 FROM (SELECT a0_.id AS id0, a0_.name AS name1 FROM Author a0_ ORDER BY (1 - 1000) * 1 DESC) dctrn_result',
$query->getSQL()
);
}