mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
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 4.2 branch. Props pento, willstedt for the initial patch. See #32090. Built from https://develop.svn.wordpress.org/branches/4.2@32370 git-svn-id: http://core.svn.wordpress.org/branches/4.2@32340 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
568c4e8f56
commit
b0b230fab4
@ -2266,7 +2266,10 @@ class wpdb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$charsets = $columns = array();
|
$charsets = $columns = array();
|
||||||
$results = $this->get_results( "SHOW FULL COLUMNS FROM `$table`" );
|
|
||||||
|
$table_parts = explode( '.', $table );
|
||||||
|
$table = '`' . implode( '`.`', $table_parts ) . '`';
|
||||||
|
$results = $this->get_results( "SHOW FULL COLUMNS FROM $table" );
|
||||||
if ( ! $results ) {
|
if ( ! $results ) {
|
||||||
return new WP_Error( 'wpdb_get_table_charset_failure' );
|
return new WP_Error( 'wpdb_get_table_charset_failure' );
|
||||||
}
|
}
|
||||||
@ -2838,16 +2841,16 @@ class wpdb {
|
|||||||
. '|REPLACE(?:\s+LOW_PRIORITY|\s+DELAYED)?(?:\s+INTO)?'
|
. '|REPLACE(?:\s+LOW_PRIORITY|\s+DELAYED)?(?:\s+INTO)?'
|
||||||
. '|UPDATE(?:\s+LOW_PRIORITY)?(?:\s+IGNORE)?'
|
. '|UPDATE(?:\s+LOW_PRIORITY)?(?:\s+IGNORE)?'
|
||||||
. '|DELETE(?:\s+LOW_PRIORITY|\s+QUICK|\s+IGNORE)*(?:\s+FROM)?'
|
. '|DELETE(?:\s+LOW_PRIORITY|\s+QUICK|\s+IGNORE)*(?:\s+FROM)?'
|
||||||
. ')\s+`?([\w-]+)`?/is', $query, $maybe ) ) {
|
. ')\s+((?:[0-9a-zA-Z$_.`]|[\xC2-\xDF][\x80-\xBF])+)/is', $query, $maybe ) ) {
|
||||||
return $maybe[1];
|
return str_replace( '`', '', $maybe[1] );
|
||||||
}
|
}
|
||||||
|
|
||||||
// SHOW TABLE STATUS and SHOW TABLES
|
// SHOW TABLE STATUS and SHOW TABLES
|
||||||
if ( preg_match( '/^\s*(?:'
|
if ( preg_match( '/^\s*(?:'
|
||||||
. 'SHOW\s+TABLE\s+STATUS.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
|
. 'SHOW\s+TABLE\s+STATUS.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
|
||||||
. '|SHOW\s+(?:FULL\s+)?TABLES.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
|
. '|SHOW\s+(?:FULL\s+)?TABLES.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
|
||||||
. ')\W([\w-]+)\W/is', $query, $maybe ) ) {
|
. ')\W((?:[0-9a-zA-Z$_.`]|[\xC2-\xDF][\x80-\xBF])+)\W/is', $query, $maybe ) ) {
|
||||||
return $maybe[1];
|
return str_replace( '`', '', $maybe[1] );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Big pattern for the rest of the table-related queries.
|
// Big pattern for the rest of the table-related queries.
|
||||||
@ -2865,8 +2868,8 @@ class wpdb {
|
|||||||
. '|LOAD\s+DATA.*INFILE.*INTO\s+TABLE'
|
. '|LOAD\s+DATA.*INFILE.*INTO\s+TABLE'
|
||||||
. '|(?:GRANT|REVOKE).*ON\s+TABLE'
|
. '|(?:GRANT|REVOKE).*ON\s+TABLE'
|
||||||
. '|SHOW\s+(?:.*FROM|.*TABLE)'
|
. '|SHOW\s+(?:.*FROM|.*TABLE)'
|
||||||
. ')\s+\(*\s*`?([\w-]+)`?\s*\)*/is', $query, $maybe ) ) {
|
. ')\s+\(*\s*((?:[0-9a-zA-Z$_.`]|[\xC2-\xDF][\x80-\xBF])+)\s*\)*/is', $query, $maybe ) ) {
|
||||||
return $maybe[1];
|
return str_replace( '`', '', $maybe[1] );
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user