https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6444
--- Comment #10 from Mark Martinec <[email protected]> 2010-06-10 13:24:12 EDT --- Not to forget, the proposal in Bug 4400 (PostgreSQL schema maintains unnecessary additional index) is also very much worth it! To summarize it: -- Drop the secondary index drop index bayes_token_idx1; -- Drop the old primary key alter table bayes_token drop constraint bayes_token_pkey; -- Add the goodnew primary key alter table bayes_token add constraint bayes_token_pkey primary key (token, id); And the Bug 6447 (new feature to bayes autolearning: learn-on-error) helps to curtail the growth of a table bayes_tokens. -- Configure bugmail: https://issues.apache.org/SpamAssassin/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
