#8668: Serializer regressions tests broken with MySQL
---------------------------------------+------------------------------------
          Reporter:  mtredinnick       |         Owner:  nobody
            Status:  new               |     Milestone:  1.0   
         Component:  Database wrapper  |       Version:  SVN   
        Resolution:                    |      Keywords:        
             Stage:  Unreviewed        |     Has_patch:  0     
        Needs_docs:  0                 |   Needs_tests:  0     
Needs_better_patch:  0                 |  
---------------------------------------+------------------------------------
Comment (by jacob):

 Nope, the test's fine; it's a -- wait for it -- bug with MySQL:

 {{{
 mysql> CREATE TABLE thing (id integer AUTO_INCREMENT PRIMARY KEY, data
 longtext);
 Query OK, 0 rows affected (0.00 sec)

 mysql> INSERT INTO thing VALUES (0, 'some test');
 Query OK, 1 row affected (0.00 sec)

 mysql> SELECT * FROM thing;
 +----+-----------+
 | id | data      |
 +----+-----------+
 |  1 | some test |
 +----+-----------+
 }}}

 Awesome.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/8668#comment:2>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" 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.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to