<!--
RSS generated by JIRA (5.2.7#850-sha1:b2af0c8dc8537b36121c6a579fabbdf79fc919e5) at Sat May 25 16:43:27 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://doctrine-project.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+DBAL+AND+created%3E%3D-1w+ORDER+BY+created+DESC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://doctrine-project.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Doctrine Project</title>
        <link>http://doctrine-project.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+DBAL+AND+created%3E%3D-1w+ORDER+BY+created+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="9" total="9"/>
                <build-info>
            <version>5.2.7</version>
            <build-number>850</build-number>
            <build-date>21-02-2013</build-date>
        </build-info>
<item>
            <title>[DBAL-530] sqlite: foreignKey - definition wrong when tables has databasename as prefix</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-530</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;Because of the fact that SQLite doesn&apos;t support multiple databases in one file, Doctrine handles definitions like that:&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;
/**
 * @ORM\Entity()
 * @ORM\Table(name=&lt;span class=&quot;code-quote&quot;&gt;&quot;database.table&quot;&lt;/span&gt;)
 */
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;in this way:&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;
CREATE TABLE database__table[...]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;But when another Tabele references a table defined like the one above, the foreignkey definition is generated wrong:&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;
[...]FOREIGN KEY (table_id) REFERENCES database.table (id) NOT DEFER[...]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;b&gt;&lt;font color=&quot;red&quot;&gt;SQLSTATE&lt;span class=&quot;error&quot;&gt;&amp;#91;HY000&amp;#93;&lt;/span&gt;: General error: 1 near &quot;.&quot;: syntax error&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;I guess this would be the right query:&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;
[...]FOREIGN KEY (table_id) REFERENCES database__table (id) NOT DEFER[...]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="14988">DBAL-530</key>
            <summary>sqlite: foreignKey - definition wrong when tables has databasename as prefix</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="rosslau@my-hammer.de">Andy Rosslau</reporter>
                        <labels>
                    </labels>
                <created>Fri, 24 May 2013 11:54:14 +0000</created>
                <updated>Fri, 24 May 2013 11:54:14 +0000</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-529] databasenames including dashes not correctly supported</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-529</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;I&apos;m having a legacy Database including a dash in its name:&lt;/p&gt;

&lt;p&gt;&lt;b&gt;&quot;my-db&quot;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;which includes tables I want to work with.&lt;/p&gt;

&lt;p&gt;The EntityMapping would be the following:&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;yml&lt;/ins&gt;&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;
My\TestBundle\Entity\Stuff:
    type: entity
    table: my-db.stuff
    fields:
        id:
...
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;ins&gt;annotation&lt;/ins&gt;&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;
/**
 * @ORM\Entity()
 * @ORM\Table(name=&lt;span class=&quot;code-quote&quot;&gt;&quot;my-db.stuff&quot;&lt;/span&gt;)
 */
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Both concludes in a Query (SELECT, INSERT etc.) which won&apos;t work:&lt;br/&gt;
&lt;b&gt;&lt;font color=&quot;red&quot;&gt;SQLSTATE&lt;span class=&quot;error&quot;&gt;&amp;#91;42000&amp;#93;&lt;/span&gt;: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &apos;-db.stuff t0 WHERE&lt;span class=&quot;error&quot;&gt;&amp;#91;...&amp;#93;&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;I found a simple fix by trial and Error. Just put a &quot;`&quot; in front of the databasename:&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;yml&lt;/ins&gt;&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;
My\TestBundle\Entity\Stuff:
    type: entity
    table: `my-db.stuff
    fields:
        id:
...
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;ins&gt;annotation&lt;/ins&gt;&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;
/**
 * @ORM\Entity()
 * @ORM\Table(name=&lt;span class=&quot;code-quote&quot;&gt;&quot;`my-db.stuff&quot;&lt;/span&gt;)
 */
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Although this fix works, it feels wrong.&lt;br/&gt;
Moreover, to prevent confusing other developers, this should be fixed to one the following styles.&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;annotation&lt;/ins&gt;&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;
/**
 * @ORM\Entity()
 * @ORM\Table(name=&lt;span class=&quot;code-quote&quot;&gt;&quot;`my-db`.stuff&quot;&lt;/span&gt;)
 */
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;OR&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;annotation&lt;/ins&gt;&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;
/**
 * @ORM\Entity()
 * @ORM\Table(name=&lt;span class=&quot;code-quote&quot;&gt;&quot;my-db.stuff&quot;&lt;/span&gt;)
 */
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="14987">DBAL-529</key>
            <summary>databasenames including dashes not correctly supported</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="rosslau@my-hammer.de">Andy Rosslau</reporter>
                        <labels>
                        <label>annotationdriver</label>
                        <label>mapping</label>
                        <label>yml</label>
                    </labels>
                <created>Fri, 24 May 2013 11:05:27 +0000</created>
                <updated>Fri, 24 May 2013 11:05:27 +0000</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-528] [GH-324] Update SQLServer2008Platform.php (support  MS SQL Server type datetimeoffset(6))</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-528</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of valerio8787:&lt;/p&gt;

&lt;p&gt;Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/324&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/324&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;Added support of  maps a Doctrine datetimetz type to a MS SQL SERVER type datetimeoffset(6)&lt;/p&gt;</description>
                <environment></environment>
            <key id="14984">DBAL-528</key>
            <summary>[GH-324] Update SQLServer2008Platform.php (support  MS SQL Server type datetimeoffset(6))</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="doctrinebot">Doctrine Bot</reporter>
                        <labels>
                    </labels>
                <created>Thu, 23 May 2013 09:40:54 +0000</created>
                <updated>Thu, 23 May 2013 09:40:54 +0000</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-527] [GH-323] Update MasterSlaveConnection.php</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-527</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of ananda-agrawal:&lt;/p&gt;

&lt;p&gt;Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/323&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/323&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;check $this-&amp;gt;keepSlave before enforcing master as slave&lt;/p&gt;</description>
                <environment></environment>
            <key id="14981">DBAL-527</key>
            <summary>[GH-323] Update MasterSlaveConnection.php</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="doctrinebot">Doctrine Bot</reporter>
                        <labels>
                    </labels>
                <created>Wed, 22 May 2013 14:51:17 +0000</created>
                <updated>Wed, 22 May 2013 14:51:17 +0000</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-526] Doctrine\DBAL\Connection::executeQuery changes passed clause</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-526</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;&amp;gt;&amp;gt; var_dump(get_class($db));&lt;/p&gt;

&lt;p&gt;string(24) &quot;Doctrine\DBAL\Connection&quot;&lt;/p&gt;

&lt;p&gt;&amp;gt;&amp;gt; var_dump($params);&lt;/p&gt;

&lt;p&gt;array(2) &lt;/p&gt;
{
  [0] =&amp;gt;
  int(18)
  [1] =&amp;gt;
  int(0)
}

&lt;p&gt;&amp;gt;&amp;gt; $stmt = $db-&amp;gt;executeQuery(&apos;SELECT l0_.id AS id0 FROM link l0_ WHERE l0_.user_id = ? AND l0_.is_deleted = ?&apos;, array($params), array(\Doctrine\DBAL\Connection::PARAM_INT_ARRAY));&lt;/p&gt;

&lt;p&gt;  An exception occurred while executing &apos;SELECT l0_.id AS id0 FROM link l0_ WHERE l0_.user_id = ?, ? AND l0_.is_deleted = ?&apos; with params &lt;span class=&quot;error&quot;&gt;&amp;#91;18, 0&amp;#93;&lt;/span&gt;: SQLSTATE&lt;span class=&quot;error&quot;&gt;&amp;#91;HY093&amp;#93;&lt;/span&gt;: Invalid parameter number: number of bound variables does not match number of tokens &lt;/p&gt;

&lt;p&gt;&amp;gt;&amp;gt; $stmt = $db-&amp;gt;executeQuery(&apos;SELECT l0_.id AS id0 FROM link l0_ WHERE l0_.user_id = ? AND l0_.is_deleted = ?&apos;, $params, array(\PDO::PARAM_INT, \PDO::PARAM_INT));&lt;br/&gt;
&amp;gt;&amp;gt; var_dump($stmt-&amp;gt;fetchAll());&lt;/p&gt;

&lt;p&gt;array(0) {&lt;br/&gt;
}&lt;/p&gt;</description>
                <environment>PHP 5.4.15-pl0-gentoo&lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/annotations          v1.1.1  &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/cache                v1.0        &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/collections          v1.1    &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/common               2.4.0-RC2  &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/dbal                 2.4.0-BETA2 &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/doctrine-bundle      v1.2.0      &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/inflector            v1.0       &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/lexer                v1.0        &lt;br/&gt;
&amp;nbsp;&amp;nbsp;doctrine/orm                  2.4.0-BETA2  </environment>
            <key id="14980">DBAL-526</key>
            <summary>Doctrine\DBAL\Connection::executeQuery changes passed clause</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="coviex">Covie X</reporter>
                        <labels>
                    </labels>
                <created>Wed, 22 May 2013 13:23:46 +0000</created>
                <updated>Wed, 22 May 2013 13:24:22 +0000</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-525] PostgreSQL - getDateTimeFormatString() missing</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-525</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;Using PostgreSQL and column with &quot;timestamp without time zone&quot; returns datetime in format Y-m-d H:i:s.u but not always. If u is zero the PHP driver returns Y-m-d H:i:s format only. Specification of function getDateTimeFormatString is missing for this case too. It&apos;s required to resolve described different two formats and add getDateTimeFormatString with usec to postgres platform&lt;br/&gt;
It&apos;s similar as &lt;a href=&quot;http://doctrine-project.org/jira/browse/DBAL-397&quot; title=&quot;PostgreSQL - getDateTimeTzFormatString()&quot;&gt;&lt;del&gt;DBAL-397&lt;/del&gt;&lt;/a&gt; but for not time zone datetimes. It throws the same exception as in linked issue.&lt;/p&gt;</description>
                <environment>PostgreSQL Database</environment>
            <key id="14978">DBAL-525</key>
            <summary>PostgreSQL - getDateTimeFormatString() missing</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="honzap">Jan Pecek</reporter>
                        <labels>
                        <label>datetime</label>
                        <label>format</label>
                        <label>postgresql</label>
                    </labels>
                <created>Wed, 22 May 2013 09:16:56 +0000</created>
                <updated>Wed, 22 May 2013 09:16:56 +0000</updated>
                                    <version>2.3.4</version>
                                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-524] [GH-322] DBAL-522</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-524</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of Ocramius:&lt;/p&gt;

&lt;p&gt;Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/322&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/322&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;Hotfix for &lt;a href=&quot;http://doctrine-project.org/jira/browse/DBAL-522&quot; title=&quot;BC break : executeQuery with an array containing null value(s).&quot;&gt;&lt;del&gt;DBAL-522&lt;/del&gt;&lt;/a&gt;(&lt;a href=&quot;http://www.doctrine-project.org/jira/browse/DBAL-522&quot; class=&quot;external-link&quot;&gt;http://www.doctrine-project.org/jira/browse/DBAL-522&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Demonstrates that NULL parameters are handled incorrectly by `Doctrine\DBAL\SqlParserUtils` as of 2.3.4.&lt;/p&gt;

&lt;p&gt;Basically, following usage always throws an exception:&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;
$conn-&amp;gt;executeQuery(
    &apos;INSERT INTO FOO (foo, bar) values (:foo, :bar)&apos;, 
    array(&apos;foo&apos; =&amp;gt; 1, &apos;bar&apos; =&amp;gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;)
);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="14974">DBAL-524</key>
            <summary>[GH-322] DBAL-522</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://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="doctrinebot">Doctrine Bot</reporter>
                        <labels>
                    </labels>
                <created>Mon, 20 May 2013 16:14:04 +0000</created>
                <updated>Tue, 21 May 2013 05:54:38 +0000</updated>
                    <resolved>Tue, 21 May 2013 05:54:38 +0000</resolved>
                                            <fixVersion>2.3.4</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="20405" author="doctrinebot" created="Tue, 21 May 2013 05:52:17 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-322&amp;#93;&lt;/span&gt; was closed:&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/322&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/322&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-523] [GH-321] Changed property visibility to protected</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-523</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of barnabywalters:&lt;/p&gt;

&lt;p&gt;Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/321&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/321&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;The main reason being to allow QueryBuilder to be subclassed &#65533;&#65533;&#65533; for example so that we can fix issues like problematic shallow cloning locally and use them without having to wait for a pull request to be merged.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14973">DBAL-523</key>
            <summary>[GH-321] Changed property visibility to protected</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="2">Won&apos;t Fix</resolution>
                    <security id="10000">All</security>
                        <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="doctrinebot">Doctrine Bot</reporter>
                        <labels>
                    </labels>
                <created>Mon, 20 May 2013 12:06:11 +0000</created>
                <updated>Mon, 20 May 2013 15:25:34 +0000</updated>
                    <resolved>Mon, 20 May 2013 15:25:34 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="20400" author="doctrinebot" created="Mon, 20 May 2013 15:23:20 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-321&amp;#93;&lt;/span&gt; was closed:&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/321&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/321&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="20401" author="ocramius" created="Mon, 20 May 2013 15:25:34 +0000"  >&lt;p&gt;Enforces BC on the internals of the QueryBuilder, which is a no-go given the complexity of the QueryBuilder itself&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-522] BC break : executeQuery with an array containing null value(s).</title>
                <link>http://doctrine-project.org/jira/browse/DBAL-522</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;Hello, i have got an error with doctrine 2.3.4 when i try to run the following code :&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; 
    $conn-&amp;gt;executeQuery(
        &apos;INSERT INTO FOO (foo, bar) values (:foo, :bar)&apos;, 
         array(&apos;foo&apos; =&amp;gt; 1, &apos;bar&apos; =&amp;gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;)
     );
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;Error : Value for :bar not found in params array. Params array key should be &quot;bar&quot; &lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;This code worked with doctrine 2.3.3.&lt;/p&gt;

&lt;p&gt;I think the error comes from the function &apos;extractParam&apos; in SQLParserUtils.php (DBAL)&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;
line 215 : &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (isset($paramsOrTypes[$paramName]))
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The key exists even if the value is null.&lt;br/&gt;
So it should be:&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;
  &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (array_key_exists($paramName, $paramsOrTypes)) 
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;


&lt;p&gt;I am not enough confident to try a PR.&lt;br/&gt;
Thanks in advance!&lt;/p&gt;



</description>
                <environment>Mac OSX 10.8.3, Mysql 5.5.28, PHP5.4 </environment>
            <key id="14971">DBAL-522</key>
            <summary>BC break : executeQuery with an array containing null value(s).</summary>
                <type id="1" iconUrl="http://doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="1" iconUrl="http://doctrine-project.org/jira/images/icons/priorities/blocker.png">Blocker</priority>
                    <status id="5" iconUrl="http://doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                                <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="remy">lemeunier</reporter>
                        <labels>
                        <label>dbal</label>
                    </labels>
                <created>Mon, 20 May 2013 10:02:55 +0000</created>
                <updated>Tue, 21 May 2013 05:58:01 +0000</updated>
                    <resolved>Tue, 21 May 2013 05:54:50 +0000</resolved>
                            <version>2.3.4</version>
                                <fixVersion>2.4</fixVersion>
                <fixVersion>2.3.5</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>2</watches>
                        <comments>
                    <comment id="20402" author="ocramius" created="Mon, 20 May 2013 16:15:54 +0000"  >&lt;p&gt;I suggested a hotfix at &lt;a href=&quot;https://github.com/doctrine/dbal/pull/322&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/322&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="20406" author="remy" created="Tue, 21 May 2013 05:58:01 +0000"  >&lt;p&gt;Thanks for the hotfix.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>
</channel>
</rss>