#1492: Non-selected fields appear in query results
-----------------------------------+----------------------------------------
Reporter: colnector | Owner: romanb
Type: defect | Status: new
Priority: major | Milestone:
Component: Query/Hydration | Version: 1.0
Keywords: | Has_test: 0
Mystatus: Pending Core Response | Has_patch: 0
-----------------------------------+----------------------------------------
Fields that were NOT specifically selected appear in the results set. This
is inflating the results set.
For example:
{{{
$q = Doctrine_Query::create() ## New query
->select('inv.item_id, inv.list_type')
->from('Inventory inv')
->addWhere('inv.category_id = ?',
array(1))
;
}}}
inv.category_id appears in the results set.
--
Ticket URL: <http://trac.doctrine-project.org/ticket/1492>
Doctrine <http://www.phpdoctrine.org>
PHP Doctrine Object Relational Mapper
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"doctrine-svn" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---