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
8832bf88
Commit
8832bf88
authored
Jul 20, 2004
by
jouni%heikniemi.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 250547: Make FlagTypes use INNER JOIN instead of comma operator.
Patch by Tomas Kopal <Tomas.Kopal@altap.cz> r=jouni, a=justdave
parent
0ed8d173
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
FlagType.pm
Bugzilla/FlagType.pm
+2
-2
No files found.
Bugzilla/FlagType.pm
View file @
8832bf88
...
...
@@ -326,8 +326,8 @@ sub sqlify_criteria {
# Add inclusions to the query, which simply involves joining the table
# by flag type ID and target product/component.
push
(
@$tables
,
"
, flaginclusions"
);
push
(
@criteria
,
"flagtypes.id = flaginclusions.type_id"
);
push
(
@$tables
,
"
INNER JOIN flaginclusions ON "
.
"flagtypes.id = flaginclusions.type_id"
);
push
(
@criteria
,
"(flaginclusions.product_id = $product_id "
.
" OR flaginclusions.product_id IS NULL)"
);
push
(
@criteria
,
"(flaginclusions.component_id = $component_id "
.
...
...
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