Make WordPress Core


Ignore:
Timestamp:
05/06/2015 09:04:46 PM (9 years ago)
Author:
johnbillion
Message:

WPDB: Allow queries to reference tables in the dbname.tablename format, and allow table names to contain any valid character, rather than just ASCII.

Merge of [32368] to the 3.9 branch.

Props pento, willstedt for the initial patch.

See #32090.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.9/src/wp-includes/wp-db.php

    r32405 r32414  
    22102210
    22112211        $charsets = $columns = array();
    2212         $results = $this->get_results( "SHOW FULL COLUMNS FROM `$table`" );
     2212
     2213        $table_parts = explode( '.', $table );
     2214        $table = '`' . implode( '`.`', $table_parts ) . '`';
     2215        $results = $this->get_results( "SHOW FULL COLUMNS FROM $table" );
    22132216        if ( ! $results ) {
    22142217            return new WP_Error( 'wpdb_get_table_charset_failure' );
     
    27832786                . '|UPDATE(?:\s+LOW_PRIORITY)?(?:\s+IGNORE)?'
    27842787                . '|DELETE(?:\s+LOW_PRIORITY|\s+QUICK|\s+IGNORE)*(?:\s+FROM)?'
    2785                 . ')\s+`?([\w-]+)`?/is', $query, $maybe ) ) {
    2786             return $maybe[1];
     2788                . ')\s+((?:[0-9a-zA-Z$_.`]|[\xC2-\xDF][\x80-\xBF])+)/is', $query, $maybe ) ) {
     2789            return str_replace( '`', '', $maybe[1] );
    27872790        }
    27882791
     
    27912794                . 'SHOW\s+TABLE\s+STATUS.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
    27922795                . '|SHOW\s+(?:FULL\s+)?TABLES.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
    2793                 . ')\W([\w-]+)\W/is', $query, $maybe ) ) {
    2794             return $maybe[1];
     2796                . ')\W((?:[0-9a-zA-Z$_.`]|[\xC2-\xDF][\x80-\xBF])+)\W/is', $query, $maybe ) ) {
     2797            return str_replace( '`', '', $maybe[1] );
    27952798        }
    27962799
     
    28102813                . '|(?:GRANT|REVOKE).*ON\s+TABLE'
    28112814                . '|SHOW\s+(?:.*FROM|.*TABLE)'
    2812                 . ')\s+\(*\s*`?([\w-]+)`?\s*\)*/is', $query, $maybe ) ) {
    2813             return $maybe[1];
     2815                . ')\s+\(*\s*((?:[0-9a-zA-Z$_.`]|[\xC2-\xDF][\x80-\xBF])+)\s*\)*/is', $query, $maybe ) ) {
     2816            return str_replace( '`', '', $maybe[1] );
    28142817        }
    28152818
Note: See TracChangeset for help on using the changeset viewer.