[DC-312] Doctrine_Pager query "influences" Doctrine::getTable() query Created: 02/Dec/09 Updated: 02/Dec/09 |
|
| Status: | Open |
| Project: | Doctrine 1 |
| Component/s: | Pager |
| Affects Version/s: | 1.2.0 |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | Jan Matousek | Assignee: | Guilherme Blanco |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Debian testing squeeze 32 bit. |
||
| Description |
|
When I use the same procedure without Doctrine_Pager everything works fine, with Doctrine_Pager the behavior of later queries is strange. Example: 2. I fetch a row to edit independently on the list above 3. edit properties of the object... 4. $object->replace(); ----------------BROKEN: 2. I fetch a row to edit independently on the list above (in contrast to the first working example this $object is fetched with EMPTY RELATION OBJECTS, which causes inserting empty new rows when calling ->replace()) 3. edit properties of the object... 4. $object->replace(); I've been using Doctrine for I guess 2 years now and I believe this bug/strange behavior has always been there. |