summaryrefslogtreecommitdiffstats
path: root/contrib/bzdbcopy.pl
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-05-01 08:53:28 +0200
committermkanat%bugzilla.org <>2006-05-01 08:53:28 +0200
commitb778d54f31e2b9d2cfee20c5b7b3331f36cb6835 (patch)
tree6584788a7dc254b27feddf846ba8852c2510b02e /contrib/bzdbcopy.pl
parent640fb0493cf354df374b8fda5f24bab9110eb64a (diff)
downloadbugzilla-b778d54f31e2b9d2cfee20c5b7b3331f36cb6835.tar.gz
bugzilla-b778d54f31e2b9d2cfee20c5b7b3331f36cb6835.tar.xz
Bug 335572: contrib/bzdbcopy.pl fails because it tries to insert too long a name into fielddefs
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'contrib/bzdbcopy.pl')
-rwxr-xr-xcontrib/bzdbcopy.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/contrib/bzdbcopy.pl b/contrib/bzdbcopy.pl
index 20fca2cfa..ac3ba8248 100755
--- a/contrib/bzdbcopy.pl
+++ b/contrib/bzdbcopy.pl
@@ -172,13 +172,6 @@ foreach my $table (@table_list) {
print "\n\n";
}
-# And there's one entry in the fielddefs table that needs
-# to be manually fixed. This is a huge hack.
-my $delta_fdef = "(" . $target_db->sql_to_days('NOW()') . " - " .
- $target_db->sql_to_days('bugs.delta_ts') . ")";
-$target_db->do(q{UPDATE fielddefs SET name = ?
- WHERE name LIKE '%bugs.delta_ts%'}, undef, $delta_fdef);
-
print "Committing changes to the target database...\n";
$target_db->commit;