Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
b4478793
Commit
b4478793
authored
Dec 02, 2007
by
lpsolit%gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2nd part of bug 99215: Adding missing DB index when upgrading - Patch by me, r=mkanat
parent
641f68ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
DB.pm
Bugzilla/Install/DB.pm
+4
-0
No files found.
Bugzilla/Install/DB.pm
View file @
b4478793
...
@@ -2924,6 +2924,10 @@ sub _fix_attachment_modification_date {
...
@@ -2924,6 +2924,10 @@ sub _fix_attachment_modification_date {
WHERE attach_id = ?'
);
WHERE attach_id = ?'
);
$sth
->
execute
(
$_
->
[
1
],
$_
->
[
0
])
foreach
(
@$attachments
);
$sth
->
execute
(
$_
->
[
1
],
$_
->
[
0
])
foreach
(
@$attachments
);
}
}
# We add this here to be sure to have the index being added, due to the original
# patch omitting it.
$dbh
->
bz_add_index
(
'attachments'
,
'attachments_modification_time_idx'
,
[
qw(modification_time)
]);
}
}
1
;
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment