2012-03-06 16:24:44 +01:00
< ? php
namespace Doctrine\Tests\ORM\Tools\Pagination ;
2014-12-05 14:54:26 +01:00
use Doctrine\DBAL\Platforms\MySqlPlatform ;
2014-12-05 14:53:42 +01:00
use Doctrine\DBAL\Platforms\OraclePlatform ;
use Doctrine\DBAL\Platforms\PostgreSqlPlatform ;
2014-12-16 11:59:13 -05:00
use Doctrine\DBAL\Platforms\SQLServerPlatform ;
2012-03-06 16:24:44 +01:00
use Doctrine\ORM\Query ;
2012-03-12 08:33:35 +01:00
class LimitSubqueryOutputWalkerTest extends PaginationTestCase
2012-03-06 16:24:44 +01:00
{
public function testLimitSubquery ()
{
$query = $this -> entityManager -> createQuery (
2013-01-26 23:27:38 +02:00
'SELECT p, c, a FROM Doctrine\Tests\ORM\Tools\Pagination\MyBlogPost p JOIN p.category c JOIN p.author a' );
2012-09-18 13:56:32 +02:00
$query -> expireQueryCache ( true );
2012-03-06 16:24:44 +01:00
$limitQuery = clone $query ;
2012-03-12 08:33:35 +01:00
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
2012-03-06 16:24:44 +01:00
$this -> assertEquals (
2014-03-21 19:39:51 +01:00
" SELECT DISTINCT id_0 FROM (SELECT m0_.id AS id_0, m0_.title AS title_1, c1_.id AS id_2, a2_.id AS id_3, a2_.name AS name_4, m0_.author_id AS author_id_5, m0_.category_id AS category_id_6 FROM MyBlogPost m0_ INNER JOIN Category c1_ ON m0_.category_id = c1_.id INNER JOIN Author a2_ ON m0_.author_id = a2_.id) dctrn_result " , $limitQuery -> getSql ()
2012-03-06 16:24:44 +01:00
);
}
2012-09-18 13:56:32 +02:00
public function testLimitSubqueryWithSortPg ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new PostgreSqlPlatform );
2012-09-18 13:56:32 +02:00
$query = $this -> entityManager -> createQuery (
2013-01-26 23:27:38 +02:00
'SELECT p, c, a FROM Doctrine\Tests\ORM\Tools\Pagination\MyBlogPost p JOIN p.category c JOIN p.author a ORDER BY p.title' );
2012-09-18 13:56:32 +02:00
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT id_0, title_1 FROM (SELECT m0_.id AS id_0, m0_.title AS title_1, c1_.id AS id_2, a2_.id AS id_3, a2_.name AS name_4, m0_.author_id AS author_id_5, m0_.category_id AS category_id_6 FROM MyBlogPost m0_ INNER JOIN Category c1_ ON m0_.category_id = c1_.id INNER JOIN Author a2_ ON m0_.author_id = a2_.id) dctrn_result ORDER BY title_1 ASC " , $limitQuery -> getSql ()
2012-09-18 13:56:32 +02:00
);
2013-01-26 21:21:09 +02:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
public function testLimitSubqueryWithScalarSortPg ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new PostgreSqlPlatform );
2013-01-26 21:21:09 +02:00
$query = $this -> entityManager -> createQuery (
2013-01-27 11:09:26 +02:00
'SELECT u, g, COUNT(g.id) AS g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity'
2013-01-26 21:21:09 +02:00
);
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT id_1, sclr_0 FROM (SELECT COUNT(g0_.id) AS sclr_0, u1_.id AS id_1, g0_.id AS id_2 FROM User u1_ INNER JOIN user_group u2_ ON u1_.id = u2_.user_id INNER JOIN groups g0_ ON g0_.id = u2_.group_id) dctrn_result ORDER BY sclr_0 ASC " ,
2013-01-26 21:21:09 +02:00
$limitQuery -> getSql ()
);
2013-01-27 11:40:40 +02:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
public function testLimitSubqueryWithMixedSortPg ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new PostgreSqlPlatform );
2013-01-27 11:40:40 +02:00
$query = $this -> entityManager -> createQuery (
'SELECT u, g, COUNT(g.id) AS g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity, u.id DESC'
);
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT id_1, sclr_0 FROM (SELECT COUNT(g0_.id) AS sclr_0, u1_.id AS id_1, g0_.id AS id_2 FROM User u1_ INNER JOIN user_group u2_ ON u1_.id = u2_.user_id INNER JOIN groups g0_ ON g0_.id = u2_.group_id) dctrn_result ORDER BY sclr_0 ASC, id_1 DESC " ,
2013-01-27 11:40:40 +02:00
$limitQuery -> getSql ()
);
2012-09-18 13:56:32 +02:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
2013-04-03 17:21:51 +09:00
public function testLimitSubqueryWithHiddenScalarSortPg ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new PostgreSqlPlatform );
2013-04-03 17:21:51 +09:00
$query = $this -> entityManager -> createQuery (
'SELECT u, g, COUNT(g.id) AS hidden g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity, u.id DESC'
);
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT id_1, sclr_0 FROM (SELECT COUNT(g0_.id) AS sclr_0, u1_.id AS id_1, g0_.id AS id_2 FROM User u1_ INNER JOIN user_group u2_ ON u1_.id = u2_.user_id INNER JOIN groups g0_ ON g0_.id = u2_.group_id) dctrn_result ORDER BY sclr_0 ASC, id_1 DESC " ,
2013-04-03 17:21:51 +09:00
$limitQuery -> getSql ()
);
2012-09-18 13:56:32 +02:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
public function testLimitSubqueryPg ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new PostgreSqlPlatform );
2012-09-18 13:56:32 +02:00
$this -> testLimitSubquery ();
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
2013-04-10 13:07:09 -03:00
public function testLimitSubqueryWithSortOracle ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new OraclePlatform );
2013-04-10 13:07:09 -03:00
$query = $this -> entityManager -> createQuery (
'SELECT p, c, a FROM Doctrine\Tests\ORM\Tools\Pagination\MyBlogPost p JOIN p.category c JOIN p.author a ORDER BY p.title' );
$query -> expireQueryCache ( true );
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT ID_0, TITLE_1 FROM (SELECT m0_.id AS ID_0, m0_.title AS TITLE_1, c1_.id AS ID_2, a2_.id AS ID_3, a2_.name AS NAME_4, m0_.author_id AS AUTHOR_ID_5, m0_.category_id AS CATEGORY_ID_6 FROM MyBlogPost m0_ INNER JOIN Category c1_ ON m0_.category_id = c1_.id INNER JOIN Author a2_ ON m0_.author_id = a2_.id) dctrn_result ORDER BY TITLE_1 ASC " , $limitQuery -> getSql ()
2013-04-10 13:07:09 -03:00
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
public function testLimitSubqueryWithScalarSortOracle ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new OraclePlatform );
2013-04-10 13:07:09 -03:00
$query = $this -> entityManager -> createQuery (
'SELECT u, g, COUNT(g.id) AS g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity'
);
$query -> expireQueryCache ( true );
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT ID_1, SCLR_0 FROM (SELECT COUNT(g0_.id) AS SCLR_0, u1_.id AS ID_1, g0_.id AS ID_2 FROM User u1_ INNER JOIN user_group u2_ ON u1_.id = u2_.user_id INNER JOIN groups g0_ ON g0_.id = u2_.group_id) dctrn_result ORDER BY SCLR_0 ASC " ,
2013-04-10 13:07:09 -03:00
$limitQuery -> getSql ()
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
public function testLimitSubqueryWithMixedSortOracle ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new OraclePlatform );
2013-04-10 13:07:09 -03:00
$query = $this -> entityManager -> createQuery (
'SELECT u, g, COUNT(g.id) AS g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity, u.id DESC'
);
$query -> expireQueryCache ( true );
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
" SELECT DISTINCT ID_1, SCLR_0 FROM (SELECT COUNT(g0_.id) AS SCLR_0, u1_.id AS ID_1, g0_.id AS ID_2 FROM User u1_ INNER JOIN user_group u2_ ON u1_.id = u2_.user_id INNER JOIN groups g0_ ON g0_.id = u2_.group_id) dctrn_result ORDER BY SCLR_0 ASC, ID_1 DESC " ,
2013-04-10 13:07:09 -03:00
$limitQuery -> getSql ()
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
public function testLimitSubqueryOracle ()
{
$odp = $this -> entityManager -> getConnection () -> getDatabasePlatform ();
2014-12-05 14:53:42 +01:00
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new OraclePlatform );
2013-04-10 13:07:09 -03:00
$query = $this -> entityManager -> createQuery (
'SELECT p, c, a FROM Doctrine\Tests\ORM\Tools\Pagination\MyBlogPost p JOIN p.category c JOIN p.author a' );
$query -> expireQueryCache ( true );
$limitQuery = clone $query ;
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-03-21 19:39:51 +01:00
" SELECT DISTINCT ID_0 FROM (SELECT m0_.id AS ID_0, m0_.title AS TITLE_1, c1_.id AS ID_2, a2_.id AS ID_3, a2_.name AS NAME_4, m0_.author_id AS AUTHOR_ID_5, m0_.category_id AS CATEGORY_ID_6 FROM MyBlogPost m0_ INNER JOIN Category c1_ ON m0_.category_id = c1_.id INNER JOIN Author a2_ ON m0_.author_id = a2_.id) dctrn_result " , $limitQuery -> getSql ()
2013-04-10 13:07:09 -03:00
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( $odp );
}
2012-09-18 13:56:32 +02:00
2014-12-05 14:53:42 +01:00
public function testCountQueryMixedResultsWithName ()
2012-03-06 16:24:44 +01:00
{
$query = $this -> entityManager -> createQuery (
2012-03-07 08:57:51 +01:00
'SELECT a, sum(a.name) as foo FROM Doctrine\Tests\ORM\Tools\Pagination\Author a' );
2012-03-06 16:24:44 +01:00
$limitQuery = clone $query ;
2012-03-12 08:33:35 +01:00
$limitQuery -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
2012-03-06 16:24:44 +01:00
$this -> assertEquals (
2014-03-21 19:39:51 +01:00
" SELECT DISTINCT id_0 FROM (SELECT a0_.id AS id_0, a0_.name AS name_1, sum(a0_.name) AS sclr_2 FROM Author a0_) dctrn_result " , $limitQuery -> getSql ()
2012-03-06 16:24:44 +01:00
);
}
2014-12-05 14:54:26 +01:00
/**
* @ group DDC - 3336
*/
2014-12-05 14:55:26 +01:00
public function testCountQueryWithArithmeticOrderByCondition ()
2014-12-05 14:54:26 +01:00
{
$query = $this -> entityManager -> createQuery (
2014-12-05 17:09:59 +01:00
'SELECT a FROM Doctrine\Tests\ORM\Tools\Pagination\Author a ORDER BY (1 - 1000) * 1 DESC'
2014-12-05 14:54:26 +01:00
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new MySqlPlatform ());
$query -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertSame (
2014-12-15 17:46:48 -05:00
'SELECT DISTINCT id_0 FROM (SELECT a0_.id AS id_0, a0_.name AS name_1 FROM Author a0_) dctrn_result ORDER BY (1 - 1000) * 1 DESC' ,
2014-12-05 14:54:26 +01:00
$query -> getSQL ()
);
}
2014-12-05 17:10:39 +01:00
2014-12-16 11:59:13 -05:00
public function testCountQueryWithComplexScalarOrderByItem ()
{
$query = $this -> entityManager -> createQuery (
'SELECT a FROM Doctrine\Tests\ORM\Tools\Pagination\Avatar a ORDER BY a.image_height * a.image_width DESC'
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new MySqlPlatform ());
$query -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertSame (
'SELECT DISTINCT id_0, image_height_2, image_width_3 FROM (SELECT a0_.id AS id_0, a0_.image AS image_1, a0_.image_height AS image_height_2, a0_.image_width AS image_width_3, a0_.user_id AS user_id_4 FROM Avatar a0_) dctrn_result ORDER BY image_height_2 * image_width_3 DESC' ,
$query -> getSQL ()
);
}
public function testCountQueryWithComplexScalarOrderByItemOracle ()
{
$query = $this -> entityManager -> createQuery (
'SELECT a FROM Doctrine\Tests\ORM\Tools\Pagination\Avatar a ORDER BY a.image_height * a.image_width DESC'
);
$this -> entityManager -> getConnection () -> setDatabasePlatform ( new OraclePlatform ());
$query -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertSame (
'SELECT DISTINCT ID_0, IMAGE_HEIGHT_2, IMAGE_WIDTH_3 FROM (SELECT a0_.id AS ID_0, a0_.image AS IMAGE_1, a0_.image_height AS IMAGE_HEIGHT_2, a0_.image_width AS IMAGE_WIDTH_3, a0_.user_id AS USER_ID_4 FROM Avatar a0_) dctrn_result ORDER BY IMAGE_HEIGHT_2 * IMAGE_WIDTH_3 DESC' ,
$query -> getSQL ()
);
}
2014-12-05 17:10:39 +01:00
/**
* @ group DDC - 3434
*/
public function testLimitSubqueryWithHiddenSelectionInOrderBy ()
{
$query = $this -> entityManager -> createQuery (
'SELECT a, a.name AS HIDDEN ord FROM Doctrine\Tests\ORM\Tools\Pagination\Author a ORDER BY ord DESC'
);
$query -> setHint ( Query :: HINT_CUSTOM_OUTPUT_WALKER , 'Doctrine\ORM\Tools\Pagination\LimitSubqueryOutputWalker' );
$this -> assertEquals (
2014-12-15 17:46:48 -05:00
'SELECT DISTINCT id_0, name_2 FROM (SELECT a0_.id AS id_0, a0_.name AS name_1, a0_.name AS name_2 FROM Author a0_) dctrn_result ORDER BY name_2 DESC' ,
2014-12-05 17:10:39 +01:00
$query -> getSql ()
);
}
2012-03-06 16:24:44 +01:00
}