Closed
Bug 293927
Opened 20 years ago
Closed 20 years ago
IDs with null version.URI
Categories
(addons.mozilla.org Graveyard :: Administration, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
1.1
People
(Reporter: cso, Assigned: justdave)
Details
<alanjstr> Colin: do me a favor. file a bug and list any extensions that show
up like ID=707 does. the easiest way is to run a query in your sandbox. do a
left join between main and version where uri is null
mysql> SELECT main.id from main left join version on main.id=version.id where
version.uri is null;
+-----+
| id |
+-----+
| 3 |
| 218 |
| 331 |
| 233 |
| 276 |
| 372 |
| 407 |
| 430 |
| 579 |
| 606 |
| 654 |
| 656 |
| 659 |
| 707 |
| 714 |
+-----+
15 rows in set (0.01 sec)
Please delete these from main.
Assignee: Bugzilla-alanjstrBugs → justdave
Severity: normal → major
OS: Windows XP → All
Hardware: PC → All
Target Milestone: 1.0 → 1.1
Assignee | ||
Comment 2•20 years ago
|
||
There are legal reasons for URI to be NULL, however, I gather what you're really
looking for here are entries where there is an extension or theme defined with
no versions. So what we really want to look for is rows with vID being NULL on
that left join.
mysql> delete main from main left join version on main.id=version.id where
version.vID is null;
Query OK, 18 rows affected (0.05 sec)
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 3•20 years ago
|
||
For the record, the matched rows were:
+-----+-----------------------+------+------+
| id | name | vID | URI |
+-----+-----------------------+------+------+
| 3 | Mostly Crystal | NULL | NULL |
| 218 | Noia-Cute Ver 1.4.4 | NULL | NULL |
| 233 | 3iemPost | NULL | NULL |
| 276 | I'm Feeling Lucky | NULL | NULL |
| 331 | Flash Click to View | NULL | NULL |
| 372 | Rot13 Encoder/Decoder | NULL | NULL |
| 407 | bioFOX | NULL | NULL |
| 430 | What is a cookie? | NULL | NULL |
| 579 | Signature | NULL | NULL |
| 606 | Copy Links | NULL | NULL |
| 654 | BBCodeXtra | NULL | NULL |
| 656 | View Rendered Source | NULL | NULL |
| 659 | gtafcode | NULL | NULL |
| 685 | AIMfire | NULL | NULL |
| 707 | BBCode | NULL | NULL |
| 714 | Morning Coffee | NULL | NULL |
| 729 | BBCode | NULL | NULL |
| 730 | BBCode | NULL | NULL |
+-----+-----------------------+------+------+
18 rows in set (0.01 sec)
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•