Last modified: 2014-01-03 13:13:16 UTC

Wikimedia Bugzilla is closed!

Wikimedia migrated from Bugzilla to Phabricator. Bug reports are handled in Wikimedia Phabricator.
This static website is read-only and for historical purposes. It is not possible to log in and except for displaying bug reports and their history, links might be broken. See T61250, the corresponding Phabricator task for complete and up-to-date bug report information.
Bug 59250 - DBQ-86 List of deleted pages in the form of a question
DBQ-86 List of deleted pages in the form of a question
Status: RESOLVED FIXED
Product: Tool Labs tools
Classification: Unclassified
Database Queries (Other open bugs)
unspecified
All All
: Unprioritized major
: ---
Assigned To: Bugzilla Bug Importer (valhallasw)
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2014-01-03 13:13 UTC by Bugzilla Bug Importer (valhallasw)
Modified: 2014-01-03 13:13 UTC (History)
0 users

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments

Description Bugzilla Bug Importer (valhallasw) 2014-01-03 13:13:12 UTC
This issue was converted from https://jira.toolserver.org/browse/DBQ-86.
Summary: List of deleted pages in the form of a question
Issue type: Task - A task that needs to be done.
Priority: Major
Status: Done
Assignee: (none)

-------------------------------------------------------------------------------
From: Matthew P. Del Buono <delbu9c1@my.erau.edu>
Date: Sun, 07 Feb 2010 03:21:45
-------------------------------------------------------------------------------

I'm trying to evaluate the abuse filter request here:

http://en.wikipedia.org/wiki/Wikipedia:Edit_filter/Requested#New_article_title_in_the_form_of_a_question

Because performance considerations of the filter are important, I want to get an idea for what kind of hit rate we'd be talking about here (if it's too low, then there's no sense in making the filter). I'd like a query to be run to tell me a list (or just a total quantity) of deleted pages whose titles match one of the following:

1. Ends with a question mark  
2. Begins with "How", "Why", or "What" (case insensitive)

No urgency here.

Thanks,  
– Shirik
Comment 1 Bugzilla Bug Importer (valhallasw) 2014-01-03 13:13:14 UTC
-------------------------------------------------------------------------------
From: MZMcBride <mzmcbride@gmail.com>
Date: Sun, 07 Feb 2010 03:37:18
-------------------------------------------------------------------------------

mysql> SELECT
        ->   COUNT(*)
        -> FROM logging_ts_alternative
        -> WHERE log_namespace = 0
        -> AND log_type = 'delete'
        -> AND log_action = 'delete'
        -> AND log_title LIKE '%?';
    +----------+
    | COUNT(*) |
    +----------+
    |     6490 | 
    +----------+
    1 row in set (4 min 55.33 sec)
    
    mysql> SELECT    ->   COUNT(*)
        -> FROM logging_ts_alternative
        -> WHERE log_namespace = 0
        -> AND log_type = 'delete'
        -> AND log_action = 'delete'
        -> AND log_title RLIKE '^(What|How|Why)_.*';
    +----------+
    | COUNT(*) |
    +----------+
    |     6702 | 
    +----------+
    1 row in set (31.95 sec)
Comment 2 Bugzilla Bug Importer (valhallasw) 2014-01-03 13:13:16 UTC
This bug was imported as RESOLVED. The original assignee has therefore not been
set, and the original reporters/responders have not been added as CC, to
prevent bugspam.

If you re-open this bug, please consider adding these people to the CC list:
Original assignee: (none)
CC list: b@mzmcbride.com, delbu9c1@my.erau.edu

Note You need to log in before you can comment on or make changes to this bug.


Navigation
Links