<!--
RSS generated by JIRA (5.2.7#850-sha1:b2af0c8dc8537b36121c6a579fabbdf79fc919e5) at Wed May 22 02:34:35 UTC 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://www.doctrine-project.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+DDC+AND+fixVersion+%3D+%222.1.6%22+ORDER+BY+updated+DESC%2C+priority+DESC%2C+created+ASC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://www.doctrine-project.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Doctrine Project</title>
        <link>http://www.doctrine-project.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+DDC+AND+fixVersion+%3D+%222.1.6%22+ORDER+BY+updated+DESC%2C+priority+DESC%2C+created+ASC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="8" total="8"/>
                <build-info>
            <version>5.2.7</version>
            <build-number>850</build-number>
            <build-date>21-02-2013</build-date>
        </build-info>
<item>
            <title>[DDC-1526] Unecessary queries with LEFT JOIN</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1526</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;After upgrading to 2.1.4 (from 2.1.2), the following dql started creating way more queries than necessary :&lt;br/&gt;
SELECT m, p, s, c, o&lt;br/&gt;
FROM FERMainBundle:Menu m&lt;br/&gt;
LEFT JOIN m.page p&lt;br/&gt;
LEFT JOIN m.section s&lt;br/&gt;
LEFT JOIN m.children c&lt;br/&gt;
LEFT JOIN s.position o&lt;br/&gt;
ORDER BY m.lft&lt;/p&gt;

&lt;p&gt;Details to the code here:&lt;br/&gt;
&lt;a href=&quot;http://pastie.textmate.org/private/z9gtgqe1odwenxcmudywqa&quot; class=&quot;external-link&quot;&gt;http://pastie.textmate.org/private/z9gtgqe1odwenxcmudywqa&lt;/a&gt;&lt;br/&gt;
The model looks like that:&lt;br/&gt;
&lt;a href=&quot;http://pastie.textmate.org/private/przxzfimsfyua02cxqcv9a&quot; class=&quot;external-link&quot;&gt;http://pastie.textmate.org/private/przxzfimsfyua02cxqcv9a&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;&lt;a href=&quot;http://pastie.textmate.org/private/ob1jqiekv89e4xj9bq06q&quot; class=&quot;external-link&quot;&gt;http://pastie.textmate.org/private/ob1jqiekv89e4xj9bq06q&lt;/a&gt;&lt;br/&gt;
First query is executed, it should in fact retrieve everything there is about the menu, but then it runs the second query for every menu element I have, generating a lot of queries that didn&apos;t occur before.&lt;/p&gt;</description>
                <environment>PHP 5.3.6</environment>
            <key id="13250">DDC-1526</key>
            <summary>Unecessary queries with LEFT JOIN</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="2" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/critical.png">Critical</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="nenuial">Pascal Burkhard</reporter>
                        <labels>
                    </labels>
                <created>Fri, 9 Dec 2011 19:22:23 +0000</created>
                <updated>Tue, 23 Oct 2012 11:41:45 +0000</updated>
                    <resolved>Sat, 28 Jan 2012 11:28:38 +0000</resolved>
                            <version>2.1.4</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="16997" author="beberlei" created="Thu, 15 Dec 2011 20:04:07 +0000"  >&lt;p&gt;Can you profile where exactly the extra queries are executed using xdebug_start_trace? Directly during hydration or later in your code?&lt;/p&gt;</comment>
                    <comment id="17053" author="nenuial" created="Mon, 19 Dec 2011 18:22:40 +0000"  >&lt;p&gt;xdebug trace start just before I query the database&lt;/p&gt;</comment>
                    <comment id="17062" author="beberlei" created="Tue, 20 Dec 2011 07:54:28 +0000"  >&lt;p&gt;Hi Pascal, sorry but this is not enough. I need this query until all the other entities (or at least one) are n+1 joined.&lt;/p&gt;</comment>
                    <comment id="17063" author="nenuial" created="Tue, 20 Dec 2011 11:30:21 +0000"  >&lt;p&gt;Here the complete trace, started just before the first query. I&apos;m sorry but I can&apos;t make heads or tails with that... I hope it can help you pinpoint the problem.&lt;/p&gt;

&lt;p&gt;Please also note that I have update Doctrine ORM to 2.1.5 and there was a change in the number of &quot;superfluous&quot; queries done. I am now only left with additional queries to get the relations to &quot;parent&quot;, cf the model ( &lt;a href=&quot;http://pastie.textmate.org/private/przxzfimsfyua02cxqcv9a&quot; class=&quot;external-link&quot;&gt;http://pastie.textmate.org/private/przxzfimsfyua02cxqcv9a&lt;/a&gt; ).&lt;/p&gt;</comment>
                    <comment id="17132" author="beberlei" created="Wed, 28 Dec 2011 19:41:49 +0000"  >&lt;p&gt;Is the trace from before upgrade to 2.1.5 or after?&lt;/p&gt;</comment>
                    <comment id="17133" author="nenuial" created="Wed, 28 Dec 2011 19:44:45 +0000"  >&lt;p&gt;The &quot;complete&quot; trace, i.e. the one that is 5.94 mb big is from after the upgrade to 2.1.5.&lt;/p&gt;</comment>
                    <comment id="17143" author="beberlei" created="Thu, 29 Dec 2011 15:32:02 +0000"  >&lt;p&gt;Can you disable the nested set extension? the other ticket uses it too and i want to rule out that its the extensions fault. &lt;/p&gt;</comment>
                    <comment id="17149" author="nenuial" created="Thu, 29 Dec 2011 22:14:24 +0000"  >&lt;p&gt;Alright. I deactivated the Tree extension, but there are no changes in the number of queries.&lt;/p&gt;</comment>
                    <comment id="17348" author="beberlei" created="Sat, 28 Jan 2012 11:19:12 +0000"  >&lt;p&gt;I found the issue.&lt;/p&gt;</comment>
                    <comment id="17349" author="beberlei" created="Sat, 28 Jan 2012 11:28:38 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                <issuelinks>
                        <issuelinktype id="10000">
                <name>Duplicate</name>
                                                <inwardlinks description="is duplicated by">
                            <issuelink>
            <issuekey id="13320">DDC-1573</issuekey>
        </issuelink>
                    </inwardlinks>
                            </issuelinktype>
                    </issuelinks>
                <attachments>
                    <attachment id="11134" name="trace.txt" size="6229522" author="nenuial" created="Tue, 20 Dec 2011 11:30:21 +0000" />
                    <attachment id="11133" name="trace.txt" size="40737" author="nenuial" created="Mon, 19 Dec 2011 18:22:40 +0000" />
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1620] Partial merge of PR261</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1620</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;The PR261 &lt;span class=&quot;error&quot;&gt;&amp;#91;1&amp;#93;&lt;/span&gt; has two commits, but only one (the first one) was merged to 2.1 and 2.2&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;1&amp;#93;&lt;/span&gt; - &lt;a href=&quot;https://github.com/doctrine/doctrine2/pull/261&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/doctrine2/pull/261&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
            <key id="13387">DDC-1620</key>
            <summary>Partial merge of PR261</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/blocker.png">Blocker</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="mvrhov">Miha Vrhovnik</reporter>
                        <labels>
                    </labels>
                <created>Wed, 25 Jan 2012 11:43:03 +0000</created>
                <updated>Wed, 25 Jan 2012 22:29:59 +0000</updated>
                    <resolved>Wed, 25 Jan 2012 21:39:04 +0000</resolved>
                            <version>2.1</version>
                <version>2.1.1</version>
                <version>2.1.2</version>
                <version>2.1.3</version>
                <version>2.1.4</version>
                <version>2.1.5</version>
                <version>2.2-BETA1</version>
                <version>2.2-BETA2</version>
                <version>2.2.0-RC1</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Tools</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17334" author="beberlei" created="Wed, 25 Jan 2012 21:39:04 +0000"  >&lt;p&gt;fixed&lt;/p&gt;</comment>
                    <comment id="17337" author="mvrhov" created="Wed, 25 Jan 2012 22:22:37 +0000"  >&lt;p&gt;Hm github is still saying that this is not in 2.2 branch....&lt;/p&gt;</comment>
                    <comment id="17338" author="beberlei" created="Wed, 25 Jan 2012 22:29:05 +0000"  >&lt;p&gt;Cherrypick&lt;/p&gt;</comment>
                    <comment id="17339" author="beberlei" created="Wed, 25 Jan 2012 22:29:59 +0000"  >&lt;p&gt;ah no, now its up. thanks&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1619] Missing QueryBuilder::distinct() method</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1619</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;The QueryBuilder misses a way to make a query distinct.&lt;/p&gt;</description>
                <environment></environment>
            <key id="13386">DDC-1619</key>
            <summary>Missing QueryBuilder::distinct() method</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Wed, 25 Jan 2012 09:10:49 +0000</created>
                <updated>Wed, 25 Jan 2012 09:29:40 +0000</updated>
                    <resolved>Wed, 25 Jan 2012 09:29:40 +0000</resolved>
                            <version>2.1.5</version>
                <version>2.2.0-RC1</version>
                <version>Git Master</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17331" author="beberlei" created="Wed, 25 Jan 2012 09:29:40 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1618] Query::Iterate() with fetch join exception but no associaiton selected</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1618</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;Iterate with fetch join in class Application\Sonata\NewsBundle\Entity\Post using association tags not allowed. &lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;SELECT o FROM Application\Sonata\NewsBundle\Entity\Post o LEFT JOIN o.tags s_tags LEFT JOIN o.author s_author WHERE ( o.id = :field_4f1f118cf04ff_id_0 OR o.id = :field_4f1f118cf04ff_id_1 OR o.id = :field_4f1f118cf04ff_id_2 )
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;


&lt;p&gt;The SqlWalker.php (line 742) does not check if the association is selected ... &lt;/p&gt;

&lt;p&gt;The PR : &lt;a href=&quot;https://github.com/doctrine/doctrine2/pull/271&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/doctrine2/pull/271&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
            <key id="13384">DDC-1618</key>
            <summary>Query::Iterate() with fetch join exception but no associaiton selected</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="rande">Thomas Rabaix</reporter>
                        <labels>
                    </labels>
                <created>Tue, 24 Jan 2012 20:32:14 +0000</created>
                <updated>Tue, 24 Jan 2012 23:04:55 +0000</updated>
                    <resolved>Tue, 24 Jan 2012 23:04:56 +0000</resolved>
                            <version>2.1.5</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>DQL</component>
                <component>ORM</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17330" author="beberlei" created="Tue, 24 Jan 2012 23:04:55 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1603] Unique key name isn&apos;t correctly set</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1603</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;Example :&lt;/p&gt;

&lt;p&gt;&amp;lt;unique-constraints&amp;gt;&lt;br/&gt;
        &amp;lt;unique-constraint columns=&quot;permalink&quot; /&amp;gt;&lt;br/&gt;
        &amp;lt;unique-constraint columns=&quot;code&quot; /&amp;gt;&lt;br/&gt;
&amp;lt;/unique-constraints&amp;gt;&lt;/p&gt;

&lt;p&gt;This will create : &lt;br/&gt;
CREATE UNIQUE INDEX UNIQ_6C3BF144F286BC32 ON shows (permalink);&lt;br/&gt;
CREATE UNIQUE INDEX 1 ON shows (code);&lt;/p&gt;

&lt;p&gt;instead of :&lt;br/&gt;
CREATE UNIQUE INDEX UNIQ_6C3BF144F286BC32 ON shows (permalink);&lt;br/&gt;
CREATE UNIQUE INDEX UNIQ_6C3BF14477153098 ON shows (code);&lt;/p&gt;

&lt;p&gt;The problem comme from SchemaTool, and the first key is a valid result because of &quot;==&quot; instead of &quot;===&quot; inside Table.php.&lt;/p&gt;

&lt;p&gt;I have create a PR on Github.&lt;/p&gt;</description>
                <environment></environment>
            <key id="13364">DDC-1603</key>
            <summary>Unique key name isn&apos;t correctly set</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                                <assignee username="guilhermeblanco">Guilherme Blanco</assignee>
                                <reporter username="armetiz">Thomas Tourlourat - Armetiz</reporter>
                        <labels>
                    </labels>
                <created>Mon, 16 Jan 2012 09:21:49 +0000</created>
                <updated>Sun, 22 Jan 2012 17:34:28 +0000</updated>
                    <resolved>Tue, 17 Jan 2012 03:44:57 +0000</resolved>
                            <version>2.2-BETA2</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2.0-RC1</fixVersion>
                <fixVersion>2.2</fixVersion>
                <fixVersion>2.3</fixVersion>
                                <component>Tools</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17282" author="armetiz" created="Mon, 16 Jan 2012 09:25:50 +0000"  >&lt;p&gt;Here the PR for the ORM SchemaTool : &lt;a href=&quot;https://github.com/doctrine/doctrine2/pull/261&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/doctrine2/pull/261&lt;/a&gt;&lt;br/&gt;
Here the PR for the DBAL Table : &lt;a href=&quot;https://github.com/doctrine/dbal/pull/94&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/94&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="17293" author="guilhermeblanco" created="Tue, 17 Jan 2012 03:44:57 +0000"  >&lt;p&gt;Merged &lt;a href=&quot;https://github.com/doctrine/doctrine2/commit/2bb511584e5d37ddad6c669a19d8e6b4a20f7b2b&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/doctrine2/commit/2bb511584e5d37ddad6c669a19d8e6b4a20f7b2b&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="17322" author="beberlei" created="Sat, 21 Jan 2012 14:34:56 +0000"  >&lt;p&gt;DBAL merged back into 2.2 and 2.1.x&lt;/p&gt;</comment>
                    <comment id="17323" author="beberlei" created="Sat, 21 Jan 2012 14:38:02 +0000"  >&lt;p&gt;and Merged into 2.2 and 2.1.x ORM&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1594] Merging serialized entity back to the UnitOfWork</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1594</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;(I&apos;m using doctrine 2.1.4.)&lt;/p&gt;

&lt;p&gt;I&apos;m trying to merge an Entity back to the UnitOfWork.&lt;br/&gt;
The Entity is created from a serialized object (The deserialzed Entity is a valid Entity Object. The only difference &lt;br/&gt;
is that it is not managed by Doctrine yet) and I&apos;m using the merge&lt;br/&gt;
method of the EntityManager to get it in managed state again.&lt;/p&gt;

&lt;p&gt;This results in a call of the Method doMerge() in the UnitOfWork&lt;br/&gt;
class.&lt;br/&gt;
This method takes the id of my deserialized Entity, that I want to&lt;br/&gt;
merge, and looks if an Entity with that id is already in doctrine&lt;br/&gt;
cache. If that is the case my deserialized Entity is merged with the&lt;br/&gt;
one in the cache. So far so good. But I&apos;ve got the Problem, that the&lt;br/&gt;
Entity, which is in cache, is not initialized yet. It is not initialized because&lt;br/&gt;
this Entity has a relation to another Entity that a used earlier in code. &lt;br/&gt;
It&apos;s there but in uninitialized stat, because I did not access it yet.&lt;br/&gt;
So when my deserialized Entity and the one from cache gets merged, some field are&lt;br/&gt;
uninitialized (the id field, for example).&lt;/p&gt;

&lt;p&gt;I fixed the problem by adding this piece of code in line 1446 in the&lt;br/&gt;
UnitOfWork class:&lt;br/&gt;
  if(! $managedCopy-&amp;gt;_&lt;em&gt;isInitialized&lt;/em&gt;_)&lt;/p&gt;
{
            $managedCopy-&amp;gt;__load();
   }</description>
                <environment>Windows 7, Apache, PHP 5.3.8, Zend Framework</environment>
            <key id="13350">DDC-1594</key>
            <summary>Merging serialized entity back to the UnitOfWork</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="mrkanister">MB</reporter>
                        <labels>
                    </labels>
                <created>Wed, 11 Jan 2012 07:18:57 +0000</created>
                <updated>Sun, 15 Jan 2012 16:47:20 +0000</updated>
                    <resolved>Sun, 15 Jan 2012 16:47:20 +0000</resolved>
                            <version>2.1.4</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>ORM</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17259" author="beberlei" created="Sun, 15 Jan 2012 16:47:20 +0000"  >&lt;p&gt;Fixed and merged into 2.2 and 2.1&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1589] Use of mb_stripos in Composite.php</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1589</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;In Doctrine\ORM\Query\Expr\Composite::processQueryPart(), mb_stripos() is used. The mbstring extension should be checked for and fallback on stripos() used, or the requirement on the mbstring extension should be documented.&lt;/p&gt;</description>
                <environment></environment>
            <key id="13344">DDC-1589</key>
            <summary>Use of mb_stripos in Composite.php</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="chroder">Christopher Nadeau</reporter>
                        <labels>
                    </labels>
                <created>Mon, 9 Jan 2012 10:07:13 +0000</created>
                <updated>Mon, 9 Jan 2012 13:34:50 +0000</updated>
                    <resolved>Mon, 9 Jan 2012 13:34:50 +0000</resolved>
                            <version>2.1.5</version>
                                <fixVersion>2.1.6</fixVersion>
                                <component>DQL</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17200" author="beberlei" created="Mon, 9 Jan 2012 13:34:50 +0000"  >&lt;p&gt;This was fixed in master, that is now backported to 2.1.x&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DDC-1561] GH-239: Fix $qb-&gt;expr() PHPDoc @return type.</title>
                <link>http://www.doctrine-project.org/jira/browse/DDC-1561</link>
                <project id="10032" key="DDC">Doctrine 2 - ORM</project>
                        <description>&lt;p&gt;Pull-Request was automatically synchronized: &lt;a href=&quot;https://github.com/doctrine/doctrine2/pull/239&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/doctrine2/pull/239&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The autocompletion was missing so i was sad.&lt;/p&gt;

&lt;p&gt;But hey, it&apos;s open source!&lt;/p&gt;</description>
                <environment></environment>
            <key id="13301">DDC-1561</key>
            <summary>GH-239: Fix $qb-&gt;expr() PHPDoc @return type.</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Fri, 23 Dec 2011 16:07:04 +0000</created>
                <updated>Tue, 3 Jan 2012 21:53:35 +0000</updated>
                    <resolved>Wed, 28 Dec 2011 07:49:25 +0000</resolved>
                                            <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2-BETA2</fixVersion>
                <fixVersion>2.2</fixVersion>
                <fixVersion>2.3</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17119" author="beberlei" created="Wed, 28 Dec 2011 07:49:25 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>
</channel>
</rss>