summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-01-19 09:07:45 +0100
committerterry%netscape.com <>1999-01-19 09:07:45 +0100
commit5683ca475d5d89dd8eae076ccf680bed256f80ef (patch)
treeba80468bbff31b60c36296c21fdf55753a009c9f /CHANGES
parentccb7eb4de2f2db328c1ab716e58074655b993b19 (diff)
downloadbugzilla-5683ca475d5d89dd8eae076ccf680bed256f80ef.tar.gz
bugzilla-5683ca475d5d89dd8eae076ccf680bed256f80ef.tar.xz
Majorly changed querying of email addresses.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 66c8437c1..fabe02e1e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -11,6 +11,12 @@ will tell you what has been changed in the last week.
+1/18/99 You can now query by CC. To make this perform reasonably, the CC table
+needs some indices. The following MySQL does the necessary stuff:
+
+ alter table cc add index (bug_id), add index (who);
+
+
1/15/99 The op_sys field can now be queried by (and more easily tweaked).
To make this perform reasonably, it needs an index. The following MySQL
command will create the necessary index:
@@ -63,6 +69,17 @@ entries:
alter table bugs change column op_sys op_sys enum("All", "Windows 3.1", "Windows 95", "Windows 98", "Windows NT", "Mac System 7", "Mac System 7.5", "Mac System 7.1.6", "Mac System 8.0", "AIX", "BSDI", "HP-UX", "IRIX", "Linux", "OSF/1", "Solaris", "SunOS", "other") not null, change column rep_platform rep_platform enum("All", "DEC", "HP", "Macintosh", "PC", "SGI", "Sun", "Other");
+
+
+
+11/20/98 Added searching of CC field. To better support this, added
+some indexes to the CC table. You probably want to execute the following
+mysql commands:
+
+ alter table cc add index (bug_id);
+ alter table cc add index (who);
+
+
10/27/98 security check for legal products in place. bug charts are not
available as an option if collectstats.pl has never been run. all products
get daily stats collected now. README updated: Chart::Base is listed as