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
ad66df67
Commit
ad66df67
authored
Apr 04, 2002
by
bbaetz%student.usyd.edu.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 127200 - query for cc takes long time
r=mattyt, justdave
parent
99da5c19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
buglist.cgi
buglist.cgi
+7
-4
No files found.
buglist.cgi
View file @
ad66df67
...
...
@@ -502,9 +502,12 @@ sub GenerateSQL {
},
"^cc,"
=>
sub
{
push
(
@supptables
,
(
"LEFT JOIN cc cc_$chartid ON bugs.bug_id = cc_$chartid.bug_id LEFT JOIN profiles map_cc_$chartid ON cc_$chartid.who = map_cc_$chartid.userid"
));
$f
=
"map_cc_$chartid.login_name"
;
push
(
@supptables
,
"cc cc_$chartid"
);
push
(
@wherepart
,
"bugs.bug_id = cc_$chartid.bug_id"
);
push
(
@supptables
,
"profiles map_cc_$chartid"
);
push
(
@wherepart
,
"cc_$chartid.who = map_cc_$chartid.userid"
);
$f
=
"map_cc_$chartid.login_name"
;
},
"^long_?desc,changedby"
=>
sub
{
...
...
@@ -616,7 +619,7 @@ sub GenerateSQL {
my
$attachtable
=
"attachments_$chartid"
;
my
$statustable
=
"attachstatuses_${chartid}_$statusid"
;
push
(
@supptables
,
"attachments $attachtable"
);
my
$join
=
"LEFT JOIN attachstatuses $statustable ON "
.
"($attachtable.attach_id = $statustable.attach_id AND "
.
...
...
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