From: Arran Cudbard-Bell Date: Fri, 1 Jul 2011 13:41:51 +0000 (+0200) Subject: Change default table type for radacct and postauth to be INNODB explicitly. They... X-Git-Tag: release_3_0_0_beta0~738 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5a633563085db8618c990c078ec6bbf80f5ec22;p=thirdparty%2Ffreeradius-server.git Change default table type for radacct and postauth to be INNODB explicitly. They need an engine that supports row level locking. --- diff --git a/raddb/sql/mysql/schema.sql b/raddb/sql/mysql/schema.sql index 0634584a17b..1e75f7bb7fa 100644 --- a/raddb/sql/mysql/schema.sql +++ b/raddb/sql/mysql/schema.sql @@ -50,7 +50,7 @@ CREATE TABLE radacct ( KEY acctstarttime (acctstarttime), KEY acctstoptime (acctstoptime), KEY nasipaddress (nasipaddress) -) ; +) ENGINE = INNODB; # # Table structure for table 'radcheck' @@ -131,4 +131,4 @@ CREATE TABLE radpostauth ( reply varchar(32) NOT NULL default '', authdate timestamp NOT NULL, PRIMARY KEY (id) -) ; +) ENGINE = INNODB;