<!--
RSS generated by JIRA (5.2.7#850-sha1:b2af0c8dc8537b36121c6a579fabbdf79fc919e5) at Sat May 18 15:06:26 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+DBAL+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+DBAL+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="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-211] wrong where clause in PostgreSqlPlatform::getTableWhereClause</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-211</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;I have the folowing table structure:&lt;/p&gt;

&lt;p&gt;Schema &quot;public&quot;:  with one table called &quot;users&quot;&lt;br/&gt;
Schema &quot;forums&quot;: with one table called &quot;users&quot; &lt;/p&gt;


&lt;p&gt;methods like &lt;tt&gt;PostgreSqlPlatform::getListTableForeignKeysSQL($table, $database = &apos;&apos;)&lt;/tt&gt; should list FK inside &lt;tt&gt;$table&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;the default search path is &quot;public,pg_catalog&quot;&lt;/p&gt;


&lt;p&gt;calling &lt;tt&gt;PostgreSqlPlatform::getListTableForeignKeysSQL(&apos;users&apos;)&lt;/tt&gt; it shuld extract the FK from &lt;tt&gt;public.users&lt;/tt&gt; table, but this is the current result:&lt;/p&gt;

&lt;p&gt;&lt;tt&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;PDOException&amp;#93;&lt;/span&gt; SQLSTATE&lt;span class=&quot;error&quot;&gt;&amp;#91;21000&amp;#93;&lt;/span&gt;: Cardinality violation: 7 ERROR:  more than one row returned by a subquery used as an expression&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;this exception is thrown because &lt;tt&gt;PostgreSqlPlatform::getTableWhereClause&lt;/tt&gt; do not cosider the current search path.&lt;/p&gt;

&lt;p&gt;i propose the following implementation for &lt;tt&gt;PostgreSqlPlatform::getTableWhereClause&lt;/tt&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; 
    &lt;span class=&quot;code-keyword&quot;&gt;private&lt;/span&gt; function getTableWhereClause($table, $classAlias = &apos;c&apos;, $namespaceAlias = &apos;n&apos;)
    {
        $whereClause = $namespaceAlias.&lt;span class=&quot;code-quote&quot;&gt;&quot;.nspname NOT IN (&apos;pg_catalog&apos;, &apos;information_schema&apos;, &apos;pg_toast&apos;) AND &quot;&lt;/span&gt;;
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (strpos($table, &lt;span class=&quot;code-quote&quot;&gt;&quot;.&quot;&lt;/span&gt;) !== &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;) {
            list($schema, $table) = explode(&lt;span class=&quot;code-quote&quot;&gt;&quot;.&quot;&lt;/span&gt;, $table);
            $whereClause .= &lt;span class=&quot;code-quote&quot;&gt;&quot;$classAlias.relname = &apos;&quot;&lt;/span&gt; . $table . &lt;span class=&quot;code-quote&quot;&gt;&quot;&apos; AND $namespaceAlias.nspname = &apos;&quot;&lt;/span&gt; . $schema . &lt;span class=&quot;code-quote&quot;&gt;&quot;&apos;&quot;&lt;/span&gt;;
        } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
            &lt;span class=&quot;code-comment&quot;&gt;// $whereClause .= &lt;span class=&quot;code-quote&quot;&gt;&quot;$classAlias.relname = &apos;&quot;&lt;/span&gt; . $table . &lt;span class=&quot;code-quote&quot;&gt;&quot;&apos;&quot;&lt;/span&gt;; // &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt; was the current implementation
&lt;/span&gt;            $whereClause .= &lt;span class=&quot;code-quote&quot;&gt;&quot;$classAlias.relname = &apos;&quot;&lt;/span&gt; . $table . &lt;span class=&quot;code-quote&quot;&gt;&quot;&apos; AND $namespaceAlias.nspname = ANY(string_to_array((select setting from pg_catalog.pg_settings where name = &apos;search_path&apos;),&apos;,&apos;))&quot;&lt;/span&gt;;
        }

        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; $whereClause;
    }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;this implementation will restrict the search range only to current &quot;search_path&quot;.&lt;/p&gt;


&lt;p&gt;(sorry for my english)&lt;/p&gt;</description>
                <environment>ubuntu + postgres</environment>
            <key id="13392">DBAL-211</key>
            <summary>wrong where clause in PostgreSqlPlatform::getTableWhereClause</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="goetas">Asmir Mustafic</reporter>
                        <labels>
                    </labels>
                <created>Thu, 26 Jan 2012 08:40:33 +0000</created>
                <updated>Sat, 28 Jan 2012 09:55:23 +0000</updated>
                    <resolved>Sat, 28 Jan 2012 09:55:23 +0000</resolved>
                                            <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17342" author="beberlei" created="Sat, 28 Jan 2012 09:39:07 +0000"  >&lt;p&gt;This looks very good.&lt;/p&gt;</comment>
                    <comment id="17343" author="beberlei" created="Sat, 28 Jan 2012 09:55:23 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-212] Unknown database type longvarchar requested, Doctrine\DBAL\Platforms\SqlitePlatform may not support it.</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-212</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;SqlitePlatform lacks &quot;longvarchar&quot; type mapping  which is extensively used by browsers sqlite databases (e.g. places in FF, history in Chrome).&lt;br/&gt;
Trying to get a schema ends up with &apos;Unknown database type longvarchar requested, Doctrine\DBAL\Platforms\SqlitePlatform may not support it.&apos; message.&lt;/p&gt;</description>
                <environment></environment>
            <key id="13393">DBAL-212</key>
            <summary>Unknown database type longvarchar requested, Doctrine\DBAL\Platforms\SqlitePlatform may not support it.</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="neurocitizen">neurocitizen</reporter>
                        <labels>
                    </labels>
                <created>Sat, 28 Jan 2012 08:28:17 +0000</created>
                <updated>Sat, 28 Jan 2012 09:31:53 +0000</updated>
                    <resolved>Sat, 28 Jan 2012 09:31:53 +0000</resolved>
                                            <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17341" author="beberlei" created="Sat, 28 Jan 2012 09:31:53 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-205] MySQL SchemaManager doesn&apos;t handle composite foreign keys properly</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-205</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;The MySQL SchemaManager can not properly generate a Schema from the database if a table has a foreign key that spans multiple columns.&lt;br/&gt;
Therefore the comparator tries to drop the one index as individual indexes.&lt;/p&gt;

&lt;p&gt;That leads to an error if the resulting SQL is executed because these indexes do not exist (i.e. via app/console doctrine:schema:update --force)&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-style: solid;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-style: solid;&quot;&gt;&lt;b&gt;symfony2#app/console doctrine:schema:update --dump-sql&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;...
ALTER TABLE table1 DROP FOREIGN KEY FK_C1B1712387FE737264DE5A5511B8B3E;
DROP INDEX IDX_C1B1712387FE7372 ON table1;
DROP INDEX IDX_C1B1712364DE5A5 ON table1;
DROP INDEX IDX_C1B17123511B8B3E ON table1;
ALTER TABLE table1 ADD CONSTRAINT FK_C1B1712387FE737264DE5A5511B8B3E FOREIGN KEY (column1, column2, column3) REFERENCES table2(column1, column2, column3);
...
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="13375">DBAL-205</key>
            <summary>MySQL SchemaManager doesn&apos;t handle composite foreign keys properly</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="sbeining">Sascha Beining</reporter>
                        <labels>
                    </labels>
                <created>Thu, 19 Jan 2012 13:12:09 +0000</created>
                <updated>Sat, 21 Jan 2012 15:18:28 +0000</updated>
                    <resolved>Sat, 21 Jan 2012 15:18:28 +0000</resolved>
                            <version>2.1.5</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Schema Managers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-206] OraclePlatform causes problems with more schemas with same table names</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-206</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;OraclePlatform is using the ALL_* tables to fetch schema information but is only supplying the table name in the where condition. This causes problems when you have multiple schemas with tables that have the same name. Their columns/FK get mixed up.&lt;/p&gt;

&lt;p&gt;My colleague and I have traced the problem down to the OraclePlatform class and replaced the ALL_* tables with USER_*. The fix for that is on github &lt;a href=&quot;https://github.com/FranPregernik/dbal/commit/c70bc462b49a168105304cdff0086dcd15cc347d&quot; class=&quot;external-link&quot;&gt;https://github.com/FranPregernik/dbal/commit/c70bc462b49a168105304cdff0086dcd15cc347d&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;As mentioned in the comment message the other fix would be to fetch the schema name (user) of the table and add it to the where part of the queries. Something like this:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;t.owner = user&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;A pull request has been made on github for this.&lt;/p&gt;</description>
                <environment>Oracle database</environment>
            <key id="13376">DBAL-206</key>
            <summary>OraclePlatform causes problems with more schemas with same table names</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="franpregernik">Fran Pregernik</reporter>
                        <labels>
                    </labels>
                <created>Fri, 20 Jan 2012 11:55:57 +0000</created>
                <updated>Sat, 21 Jan 2012 14:11:54 +0000</updated>
                    <resolved>Sat, 21 Jan 2012 14:11:54 +0000</resolved>
                            <version>2.1.5</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17321" author="beberlei" created="Sat, 21 Jan 2012 14:11:54 +0000"  >&lt;p&gt;Fixed.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-201] Remote IBM DB2 connection needs protocol specified</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-201</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;Thanks so much for adding DB2 support to Doctrine2, it&apos;s awesome!&lt;/p&gt;

&lt;p&gt;I&apos;m using it to connect to a remote DB2 database, and in db2driver.php, it is expecting the &apos;protocol&apos; parameter to be set.  I tried the obvious, adding a database_protocol to my parameters.ini file (to match the other database things in there), but that didn&apos;t work. &lt;/p&gt;

&lt;p&gt;I did a temporary fix of hardcoding it in the db2driver.php to be PROTOCOL=TCPIP , and it works. &lt;/p&gt;

&lt;p&gt;So i think the proper fix would be to add the code so that database_protocol in parameters.ini is picked up.&lt;/p&gt;</description>
                <environment>using doctrine2 included in symfony2 2.0.9, running on MAMP on OSX</environment>
            <key id="13355">DBAL-201</key>
            <summary>Remote IBM DB2 connection needs protocol specified</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="suzyq">Suzy Deffeyes</reporter>
                        <labels>
                    </labels>
                <created>Fri, 13 Jan 2012 14:22:41 +0000</created>
                <updated>Sat, 21 Jan 2012 13:47:39 +0000</updated>
                    <resolved>Sat, 21 Jan 2012 13:47:39 +0000</resolved>
                                            <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Drivers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17319" author="beberlei" created="Sat, 21 Jan 2012 13:47:39 +0000"  >&lt;p&gt;This is primarily a DoctrineBundle bug. However i fixed it in DBAL to default to TCPIP protocol parameter now.&lt;/p&gt;

&lt;p&gt;DB2 is not &quot;really&quot; supported. I have considerable problems with it segfaulting the DBAL testsuite. You should be very careful.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-146] Mssql platform TOP and DISTINCT ordering issue</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-146</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;When doing a limit and a distinct query, DBAL generates an SQL statement in the form of SELECT TOP X DISTINCT, which SqlSrv does not like at all. Simply moving the the DISTINCT back to the start fixes this issue.&lt;/p&gt;

&lt;p&gt;As far as I can see this is caused by the preg_replace in doModifyLimitQuery. Attached is a patch that makes it slightly more aware.  There may be other phrases to check for, but none that I&apos;ve come across yet.&lt;/p&gt;

&lt;p&gt;Patch attached. &lt;/p&gt;</description>
                <environment>Windows 2008 R2 SqlSrv 2008 R2 IIS 7.5, fully patched</environment>
            <key id="12911">DBAL-146</key>
            <summary>Mssql platform TOP and DISTINCT ordering issue</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>
                                <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="the_angry_angel">Karl Southern</reporter>
                        <labels>
                    </labels>
                <created>Wed, 10 Aug 2011 10:14:54 +0000</created>
                <updated>Mon, 9 Jan 2012 13:30:27 +0000</updated>
                    <resolved>Mon, 9 Jan 2012 13:30:27 +0000</resolved>
                            <version>2.1</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17199" author="beberlei" created="Mon, 9 Jan 2012 13:30:27 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="11046" name="FixDisctinctTopOrderingIssue.patch" size="481" author="the_angry_angel" created="Wed, 10 Aug 2011 10:14:54 +0000" />
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-195] Method AbstractSchemaManager-&gt;dropAndCreateSequence() contains erroneous code.</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-195</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;I needed to use the function and looking at the code I found that it seemed partially implemented, cut and pasted from something else or just not ported from an earlier implementation. I&apos;m now submitting a patch that fixes this issue. I didn&apos;t modify the AbstractSchemaManager-&amp;gt;dropSequence($name) signature to become AbstractSchemaManager-&amp;gt;dropSequence($sequence) but it might be a good idea to refactor it (guess that would be another issue though &lt;img class=&quot;emoticon&quot; src=&quot;http://www.doctrine-project.org/jira/images/icons/emoticons/smile.gif&quot; height=&quot;20&quot; width=&quot;20&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt; ) &lt;/p&gt;</description>
                <environment></environment>
            <key id="13337">DBAL-195</key>
            <summary>Method AbstractSchemaManager-&gt;dropAndCreateSequence() contains erroneous code.</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="marc.campeau@gmail.com">Marc Campeau</reporter>
                        <labels>
                    </labels>
                <created>Fri, 6 Jan 2012 20:17:29 +0000</created>
                <updated>Mon, 9 Jan 2012 07:57:39 +0000</updated>
                    <resolved>Mon, 9 Jan 2012 07:57:39 +0000</resolved>
                            <version>2.1.5</version>
                                <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Schema Managers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="17181" author="beberlei" created="Mon, 9 Jan 2012 07:45:35 +0000"  >&lt;p&gt;Oh the code worked before, but was refactored. This method was forgotten.&lt;/p&gt;</comment>
                    <comment id="17184" author="beberlei" created="Mon, 9 Jan 2012 07:57:39 +0000"  >&lt;p&gt;Fixed.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="11141" name="AbstractSchemaManager_dropAndCreateSequence.patch" size="584" author="marc.campeau@gmail.com" created="Fri, 6 Jan 2012 20:17:29 +0000" />
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-190] Column type comment SQL is missing during table creation</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-190</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;Column type comment is generated properly only with MySQL, and is not generated on platforms that support comment on column statements (Oracle, PgSQL).&lt;/p&gt;</description>
                <environment>Latest DBAL master</environment>
            <key id="13298">DBAL-190</key>
            <summary>Column type comment SQL is missing during table creation</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="adrive">Miloslav &quot;adrive&quot; Kmet</reporter>
                        <labels>
                    </labels>
                <created>Fri, 23 Dec 2011 09:24:57 +0000</created>
                <updated>Tue, 3 Jan 2012 22:04:19 +0000</updated>
                    <resolved>Wed, 28 Dec 2011 07:46:02 +0000</resolved>
                                            <fixVersion>2.1.6</fixVersion>
                <fixVersion>2.2-BETA2</fixVersion>
                <fixVersion>2.2</fixVersion>
                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17094" author="beberlei" created="Fri, 23 Dec 2011 09:29:06 +0000"  >&lt;p&gt;This issue is referenced in Github Pull-Request GH-84&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/84&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/84&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="17114" author="beberlei" created="Wed, 28 Dec 2011 07:41:15 +0000"  >&lt;p&gt;Related Pull Request was closed: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/84&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/84&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="17115" author="beberlei" created="Wed, 28 Dec 2011 07:46:02 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-184] bigint binding problems in sqlite3</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-184</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;I created a @Column that was type &quot;bigint&quot; and when inserting very large numbers, they were getting capped in SQLite3 at 2147483647.&lt;/p&gt;

&lt;p&gt;I switched Doctrine/DBAL/Types/BigIntType.php, line 46 from:&lt;/p&gt;

&lt;p&gt;return \PDO::PARAM_INT;&lt;/p&gt;

&lt;p&gt;to:&lt;/p&gt;

&lt;p&gt;return \PDO::PARAM_STR;&lt;/p&gt;

&lt;p&gt;and now it is storing the full numbers.  I am unsure, however, whether this is the right change or will affect other database layers. Any thoughts?&lt;/p&gt;

&lt;p&gt;Matt&lt;/p&gt;</description>
                <environment>CentOS 4, PHP 5.3.8, Doctrine 2.1.4</environment>
            <key id="13224">DBAL-184</key>
            <summary>bigint binding problems in sqlite3</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="mw">Matt Wright</reporter>
                        <labels>
                    </labels>
                <created>Mon, 28 Nov 2011 17:07:38 +0000</created>
                <updated>Sun, 11 Dec 2011 15:49:33 +0000</updated>
                    <resolved>Sun, 11 Dec 2011 15:49:33 +0000</resolved>
                                            <fixVersion>2.1.6</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="16967" author="beberlei" created="Sun, 11 Dec 2011 15:49:33 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>
</channel>
</rss>