Make WordPress Core


Ignore:
Timestamp:
07/14/2015 10:20:55 AM (9 years ago)
Author:
pento
Message:

WPDB: When extracting the table name from a query, we had a 1000 character limit on the SQL string that would be searched. This was a hangover from when the code was imported from HyperDB, and isn't appropriate for Core, where a wider range of queries are likely to be run.

Merges [33259] to the 4.2 branch.

Fixes #32763

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2/tests/phpunit/tests/db.php

    r32370 r33260  
    534534            "SELECT * FROM `$table`",
    535535
     536            "SELECT * FROM (SELECT * FROM $table) as subquery",
     537
    536538            "INSERT $table",
    537539            "INSERT IGNORE $table",
     
    628630            "SHOW CREATE TABLE $table",
    629631            "SHOW INDEX FROM $table",
     632
     633            // @ticket 32763
     634            "SELECT " . str_repeat( 'a', 10000 ) . " FROM (SELECT * FROM $table) as subquery",
    630635        );
    631636
Note: See TracChangeset for help on using the changeset viewer.