summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-04-14 17:35:45 +0200
committermkanat%kerio.com <>2005-04-14 17:35:45 +0200
commitfd7f8dfe91396c6b90f0402e52d095500fc9d28a (patch)
tree447a3e19c867a30463238f96819529ce35bc60e5 /Bugzilla/DB
parent756a9293e0c428f7b826fac6cb790d7ec6f502c7 (diff)
downloadbugzilla-fd7f8dfe91396c6b90f0402e52d095500fc9d28a.tar.gz
bugzilla-fd7f8dfe91396c6b90f0402e52d095500fc9d28a.tar.xz
Back out bug bug 290089, which causes checksetup to fail on a newly-created DB.
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Mysql.pm73
1 files changed, 0 insertions, 73 deletions
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm
index d80b1bbbb..1d10838e9 100644
--- a/Bugzilla/DB/Mysql.pm
+++ b/Bugzilla/DB/Mysql.pm
@@ -371,79 +371,6 @@ sub bz_setup_database {
} # foreach table
} # if old-name indexes
- # The old timestamp fields need to be adjusted here instead of in
- # checksetup. Otherwise the UPDATE statements inside of bz_add_column
- # will cause accidental timestamp updates.
- # The code that does this was moved here from checksetup.
-
- # 2002-08-14 - bbaetz@student.usyd.edu.au - bug 153578
- # attachments creation time needs to be a datetime, not a timestamp
- my $attach_creation =
- $self->bz_get_field_def("attachments", "creation_ts");
- if ($attach_creation && $attach_creation->[1] =~ /^timestamp/) {
- print "Fixing creation time on attachments...\n";
-
- my $sth = $self->prepare("SELECT COUNT(attach_id) FROM attachments");
- $sth->execute();
- my ($attach_count) = $sth->fetchrow_array();
-
- if ($attach_count > 1000) {
- print "This may take a while...\n";
- }
- my $i = 0;
-
- # This isn't just as simple as changing the field type, because
- # the creation_ts was previously updated when an attachment was made
- # obsolete from the attachment creation screen. So we have to go
- # and recreate these times from the comments..
- $sth = $self->prepare("SELECT bug_id, attach_id, submitter_id " .
- "FROM attachments");
- $sth->execute();
-
- # Restrict this as much as possible in order to avoid false
- # positives, and keep the db search time down
- my $sth2 = $self->prepare("SELECT bug_when FROM longdescs
- WHERE bug_id=? AND who=?
- AND thetext LIKE ?
- ORDER BY bug_when " . $self->sql_limit(1));
- while (my ($bug_id, $attach_id, $submitter_id)
- = $sth->fetchrow_array())
- {
- $sth2->execute($bug_id, $submitter_id,
- "Created an attachment (id=$attach_id)%");
- my ($when) = $sth2->fetchrow_array();
- if ($when) {
- $self->do("UPDATE attachments " .
- "SET creation_ts='$when' " .
- "WHERE attach_id=$attach_id");
- } else {
- print "Warning - could not determine correct creation"
- . " time for attachment $attach_id on bug $bug_id\n";
- }
- ++$i;
- print "Converted $i of $attach_count attachments\n" if !($i % 1000);
- }
- print "Done - converted $i attachments\n";
-
- $self->bz_change_field_type("attachments", "creation_ts",
- 'datetime NOT NULL');
- }
-
- # 2004-08-29 - Tomas.Kopal@altap.cz, bug 257303
- # Change logincookies.lastused type from timestamp to datetime
- my $login_lastused = $self->bz_get_field_def("logincookies", "lastused");
- if ($login_lastused && $login_lastused->[1] =~ /^timestamp/) {
- $self->bz_change_field_type('logincookies', 'lastused',
- 'DATETIME NOT NULL');
- }
-
- # 2005-01-17 - Tomas.Kopal@altap.cz, bug 257315
- # Change bugs.delta_ts type from timestamp to datetime
- my $bugs_deltats = $self->bz_get_field_def("bugs", "delta_ts");
- if ($bugs_deltats && $bugs_deltats->[1] =~ /^timestamp/) {
- $self->bz_change_field_type('bugs', 'delta_ts', 'DATETIME NOT NULL');
- }
-
$self->SUPER::bz_setup_database();
}