File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,8 @@ Prerequisites
13
13
To use MySQL as the backend for storing roundup data, you also need
14
14
to install:
15
15
16
- 1. MySQL RDBMS 4.0.18 or higher - https://www.mysql.com/. Your MySQL
17
- installation MUST support InnoDB tables (or Berkeley DB (BDB) tables
18
- if you have no other choice). If you're running < 4.0.18 (but not <4.0)
19
- then you'll need to use BDB to pass all unit tests. Edit the
20
- ``roundup/backends/back_mysql.py`` file to enable DBD instead of InnoDB.
16
+ 1. MySQL RDBMS 8.0.11 or higher - https://www.mysql.com/. Your MySQL
17
+ installation MUST support InnoDB tables.
21
18
2. Python MySQL interface - https://pypi.org/project/mysqlclient/
22
19
23
20
Original file line number Diff line number Diff line change @@ -145,10 +145,7 @@ class Database(rdbms_common.Database):
145
145
implements_intersect = 0
146
146
147
147
# Backend for MySQL to use.
148
- # InnoDB is faster, but if you're running <4.0.16 then you'll need to
149
- # use BDB to pass all unit tests.
150
148
mysql_backend = 'InnoDB'
151
- # mysql_backend = 'BDB'
152
149
153
150
hyperdb_to_sql_datatypes = {
154
151
hyperdb .String : 'TEXT' ,
You can’t perform that action at this time.
0 commit comments