Mercurial > p > roundup > code
diff doc/mysql.txt @ 3929:a472391156ae
mysql table creation syntax change
The MySQL people gratuitously changed the syntax for specifying the storage
engine a while back and the current alpha drops support for the old syntax.
This patch changes TYPE to ENGINE in the mysql backend and updates the
documentation to show that we require MySQL 4.0.18 because of that. I also
removed a note in the mysql docs about a bug in InnoDB that has been fixed as
of the required version.
This fixes [SF#1727529]
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Fri, 28 Sep 2007 15:26:10 +0000 |
| parents | ad4fb8a14a97 |
| children | 6a32a2fb95b4 |
line wrap: on
line diff
--- a/doc/mysql.txt Fri Sep 28 15:25:00 2007 +0000 +++ b/doc/mysql.txt Fri Sep 28 15:26:10 2007 +0000 @@ -2,7 +2,7 @@ MySQL Backend ============= -:version: $Revision: 1.12 $ +:version: $Revision: 1.13 $ This notes detail the MySQL backend for the Roundup issue tracker. @@ -13,19 +13,13 @@ To use MySQL as the backend for storing roundup data, you also need to install: -1. MySQL RDBMS 4.0.16 or higher - http://www.mysql.com. Your MySQL +1. MySQL RDBMS 4.0.18 or higher - http://www.mysql.com. Your MySQL installation MUST support InnoDB tables (or Berkeley DB (BDB) tables - if you have no other choice). If you're running < 4.0.16 (but not <4.0) + if you have no other choice). If you're running < 4.0.18 (but not <4.0) then you'll need to use BDB to pass all unit tests. Edit the ``roundup/backends/back_mysql.py`` file to enable DBD instead of InnoDB. 2. Python MySQL interface - http://sourceforge.net/projects/mysql-python -.. note:: - The InnoDB implementation has a bug__ that Roundup tickles. See - -__ http://bugs.mysql.com/bug.php?id=1810 - - Running the MySQL tests =======================
