Skip Menu |

This queue is for tickets about the CPAN-Testers-Data-Uploads CPAN distribution.

Report information
The Basics
Id: 65946
Status: rejected
Priority: 0/
Queue: CPAN-Testers-Data-Uploads

People
Owner: Nobody in particular
Requestors: RCAPUTO [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: uploads.db.bz2 - duplicate values in uploads.file
As of this writing, the uploads table claims 113 files were uploaded more than once. Show quoted text
sqlite> select count(1) from (select author, filename, count(author +
filename) as c from uploads group by author, filename having c > 1) as whee; 113 ... In at least one case, a file has been inserted under two different distributions: one with the proper distribution name, and another with a ".pm" suffix. Show quoted text
sqlite> select dist from uploads where author = 'ASCOPE' and filename =
'Net-ITE.pm-0.03.tar.gz'; Net-ITE.pm Net-ITE
You're looking at a reference field not a key field. All those entries are for distributions that have been uploaded with a non-standard naming scheme. In order for lookups to work within the rest of the system, both the 'My- Module' and 'My-Module.pm' entries are required. This may be reviewed at some point in the future, but not right now.