http://bugzilla.spamassassin.org/show_bug.cgi?id=3377
Summary: Syntax error in bayes_mysql.sql
Product: Spamassassin
Version: SVN Trunk (Latest Devel Version)
Platform: Other
OS/Version: other
Status: NEW
Severity: trivial
Priority: P5
Component: spamassassin
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
There is a minor syntax error involving an extra comman in the bayes_mysql.sql
which prevents it from being loaded into a MySQL database from the command
line.
Here is the diff to fix it:
--- trunk/sql/bayes_mysql.sql 2004-05-12 16:45:39.000000000 -0500
+++ trunk/sql/bayes_mysql.sql.new 2004-05-12 16:45:26.000000000 -0500
@@ -17,7 +17,7 @@
id int(11) NOT NULL default '0',
msgid varchar(200) binary NOT NULL default '',
flag char(1) NOT NULL default '',
- PRIMARY KEY (id,msgid),
+ PRIMARY KEY (id,msgid)
) TYPE=MyISAM;
CREATE TABLE bayes_token (
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.