-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DDC-1927: Pagination of a SELECT of specific fields results in a RuntimeException #2596
Comments
Comment created by @beberlei: First results: This is very complicated to support, the pagination was designed for entity results. I have to check this when I have more time. |
Comment created by dquintard: Hi Benjamin, |
Comment created by mpinkston: The reason this error occurs is because the Paginator creates its own ResultSetMapping and relies on the SqlWalker to configure it (see Doctrine\ORM\Query\SqlWalker::walkSelectExpression). Doctrine will interpret each field in the first example (SELECT c.id, c.number...) as a PathExpression and add it to the result set mapping as a scalar result. This makes it impossible for the paginator to reliably know which field can be considered an identifier. A quick fix might be to re-write the query to use PartialObjectExpression: SELECT partial c.{id, number} ... (edited after a re-read and realization that a custom ResultSetMapping wouldn't cut it) |
Comment created by @beberlei: Allowing generic+complex pagination on scalar results is impossible for us, closing as can't fix. Just use LIMITs yourself here or as suggested partial objects. |
Issue was closed with resolution "Can't Fix" |
Comment created by vecchia: imho this pagination feature is quite useless if we are forced to fetch the complete Entity. Take for example a big table with a lot of data: extracting all the infos will take a lot of time... There should be a way to support the first query type |
Comment created by phpcoder: Did i miss something about Doctrine 2 ? What is the point if we can't use pagination? Selecting only several/needed fields is as standard practice as brushing your teeth every day. And pagination doesn't work when i select only specific fields (it throws 'Not all identifier properties can be found in the ResultSetMapping: id' error). I also thought that |
Comment created by netiul: @busta Rhymes - Use partial entities (only the data of the fields you specify is fetched and set in the entity). As pagination is most of the time used just for displaying data, one is fine with that. |
Comment created by ficuscr: I was pretty disappointed with this resolution. I fail to see how the tasks of a paginator fail to work with Query object foo yet work with Query object bar. They are the same objects. I would think a query is a query for the intent and purpose of the paginator, get a count, set limit and offset, give me back the page of results. All the more so if that Query has HydrationMode set to an array. What does "generic+complex pagination" even mean? |
Comment created by @Ocramius: As discussed in private, the problem is that doctrine needs a selected root entity in a DQL query in order to paginate the results. That's a current limitation that cannot be worked around. What could be done is giving a "meaning" to scalars being selected, so that they are upgraded to (for example) identifiers of a particular root entity. That is still not worth it given the amount of bugs and increase in LOC that spawns from it. |
Comment created by s.todorov: For anybody who might be experiencing this issue, a possible workaround might be: {quote} |
is this issue fixed? |
As I noted above, this limitation cannot currently be worked atound. The exception is thrown voluntarily. |
@Ocramius do you have any idea if this issue will be attacked soon? |
It won't be attacked at all. The limitation is reasonable/understandable. |
You can use the DoctrineDbalAdapter to select specific columns from the table select('p.id, p.name,p.date_created')->from('posts', 'p'); $countQueryBuilderModifier = function ($queryBuilder) { $queryBuilder->select('COUNT(DISTINCT p.id) AS total_results') ->setMaxResults(1); }; $adapter = new DoctrineDbalAdapter($queryBuilder, $countQueryBuilderModifier); $pagerfanta = new Pagerfanta($adapter); $pagerfanta->setMaxPerPage(15); // 10 by default $page = $request->query->get('page', 1); $pagerfanta->setCurrentPage($page); // 1 by default if ($pagerfanta->hasPreviousPage()) { $pagerfanta->getPreviousPage(); } if ($pagerfanta->hasNextPage()) { $pagerfanta->getNextPage(); } return $this->render(TestManagerBundle:Post:index.html.twig', array('pagination' => $pagerfanta)); |
Some problem, when i am use $paginator->setUseOutputWalkers(false); arrays instead objects returns |
I have solve my problem with "partial" syntax for query
|
For me solution was: |
Jira issue originally created by user netiul:
When paginating a DQL string which selects specific fields it results in the following error: PHP Fatal error: Uncaught exception 'RuntimeException' with message 'Not all identifier properties can be found in the ResultSetMapping: id'
NOT working: 'SELECT c.id, c.number FROM Application\Entity\Course c'
WORKING: 'SELECT c FROM Application\Entity\Course c'
WORKING: 'SELECT c, c.id, c.number FROM Application\Entity\Course c'
Setting hydration mode to scalar results makes no difference.
Gist to example code and stack trace: https://gist.github.com/d5cd6d0b0ac28e722dd7
The text was updated successfully, but these errors were encountered: