[DC-585] Hydrate Array does not return full array, when Hydrate Scalar does Created: 18/Mar/10 Updated: 02/Mar/12 |
|
| Status: | Open |
| Project: | Doctrine 1 |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | James Solomon | Assignee: | Jonathan H. Wage |
| Resolution: | Unresolved | Votes: | 4 |
| Labels: | None | ||
| Environment: |
OS : Ubuntu 9.04 |
||
| Attachments: |
|
| Description |
|
Description : Upon hydrating as array I will receive one row returned. If I am to hydrate as Scalar, I will get 200+ rows. Also, if i echo the sql ($q->getSqlQuery()) and run that raw, it will also return around 200+ rows. $q = Doctrine_Query::create() //here we will get only the first row //Here we will get all 200+ rows I have yet to dig to deep into this, but if it is indeed a bug, my guess is it is in Doctrine_Hydrator_Graph::hydrateResultSet() I can provide more data if needed. |
| Comments |
| Comment by James Solomon [ 18/Mar/10 ] |
|
I have found this in the google group, and he provides more detailed info, and appears to be the same exact issue : http://groups.google.com/group/doctrine-user/msg/8e4a8a673428fff0 |
| Comment by James Solomon [ 18/Mar/10 ] |
|
seems to be another similar issue here : http://www.doctrine-project.org/jira/browse/DC-328 |
| Comment by Juan Antonio Galán [ 19/May/10 ] |
|
I'm having that problem and I taked a look into the code, found this: I have a query that looks like this: The sql query without aliases in SELECT or without join is built that way: The sql query with aliases in SELECT is built that way: In Doctrine_Hydrator_Graph::_gatherRowData, line 288 there's the following call: $fieldName = $table->getFieldName($last); I'm not understanding the whole hydration process but replacing $fieldName = $table->getFieldName($last); with: if(isset($this->_queryComponents[ $cache[$key]['dqlAlias']]['agg'])) { solves the problem almost in my case. Hope it will help to solve the issue. |
| Comment by Jonathan H. Wage [ 08/Jun/10 ] |
|
It seems the suggested change causes many failures in our test suite. Can you give it a try and confirm? |
| Comment by Ben Davies [ 28/Jul/10 ] |
|
Just commenting to say that I can confirm this bug exists. It's happening for me too. |
| Comment by Juan Antonio Galán [ 28/Aug/10 ] |
|
As the error is located in Doctrine_Hydrator_Graph, HYDRATE_RECORD has the same behaviour. I'm trying to find a solution. |
| Comment by Ben Davies [ 31/Aug/10 ] |
|
This only occurs if your alias your identifier field. |
| Comment by Enrico Stahn [ 15/Oct/10 ] |
|
Hi everybody, we really need a unit test here. The provided patch breaks all aliased queries in our application. I will provide a patch and it hopefully solves your problem Juan. If not, please provide more information or add another test-method to the provided unit test. I had to rewrite some of the unit tests cause the order of the fields in the generated sql statement has changed due the provided patch. Enrico http://github.com/doctrine/doctrine1/commit/e3ae69c2260dae6dfbceb4e24138b2379f3da2e6#commitcomment-169495 |
| Comment by Pierrot Evrard [ 04/Mar/11 ] |
|
Hi, I have a little issue with this bug report... I'm currently using Doctrine 1.2 at revision 7691, and I've encounter a bug when select the primary key of a model with a custom alias (typically $query->addSelect( 'r.id as my_id' )), the issue was that Doctrine automatically add `r`.```id``` AS `r_1` to the select clause, in addition to the correct `r`.`id` AS `r_1` part. So, I've browse the code to finally found where does this strange thing comes from, and I've found it on Doctrine_Query::parseSelect() method, just at the line 663:
So I'm wonder : where does this patch is related to this bug report? Whatever, the bug I've encounter is very simple : the regular expression that extract the field name takes care about ' but not ´. You will find a patch for the bug DC-585-b in a few minutes... This patch just make the regular expression taking account of ' and ´ and also remove all useless parentheses in expression (by this way PCRE get less matches to capture and we can earn some precious microseconds). Also, this patch should be completed because the query still have two `r`.`id` AS `r_1` parts, that may cause some other issues with some databases... IMPORTANT NOTE: The previous revision 7674 of Doctrine_Query does not cause the bug encounter with the few lines of code above, just because they were not there. They really must be review. Loops |
| Comment by Pierrot Evrard [ 28/Apr/11 ] |
|
Damn, the bug above was corrected during a few weeks and comes back with the new branch of Doctrine 1.2.14. Does anybody can re-apply the corrective patch (renamed DC-585-c), please ? I repeat it agin, but these few lines of code really need to be review. Loops |
| Comment by klemen nagode [ 13/Jan/12 ] |
|
I also have this problem .. Anyone know howt o fix it? $query->execute(array(), Doctrine::HYDRATE_ARRAY); // returns one row only $query->execute(array(), Doctrine::HYDRATE_SCALAR); // returns result as expected |
| Comment by klemen nagode [ 14/Jan/12 ] |
|
I found solution for my problem: Table had ID field but it was not primary key. When I deleted this column, doctrine started to work as expected. |
| Comment by Lacton [ 02/Mar/12 ] |
|
I have run into the same issue. Using the default hydration, I get only one record. Using "$query->execute(array(), Doctrine::HYDRATE_SCALAR);", I get all the expected records. |