Skip to content

Commit c081df2

Browse files
committed
doc: update version in doc/mysql.txt; remove bdb support for mysql.
Remove obsolete info from doc and code.
1 parent fffab9b commit c081df2

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

doc/mysql.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ Prerequisites
1313
To use MySQL as the backend for storing roundup data, you also need
1414
to install:
1515

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.
2118
2. Python MySQL interface - https://pypi.org/project/mysqlclient/
2219

2320

roundup/backends/back_mysql.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,7 @@ class Database(rdbms_common.Database):
145145
implements_intersect = 0
146146

147147
# 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.
150148
mysql_backend = 'InnoDB'
151-
# mysql_backend = 'BDB'
152149

153150
hyperdb_to_sql_datatypes = {
154151
hyperdb.String: 'TEXT',

0 commit comments

Comments
 (0)