Update to Drupal 8.1.1. For more information, see https://www.drupal.org/node/2718713
This commit is contained in:
parent
c0a0d5a94c
commit
9eae24d844
669 changed files with 3873 additions and 1553 deletions
|
@ -11,4 +11,3 @@ namespace Drupal\Core\Database;
|
|||
* developers should account for it separately.
|
||||
*/
|
||||
interface DatabaseException { }
|
||||
|
||||
|
|
|
@ -12,4 +12,4 @@ class Select extends QuerySelect {
|
|||
// SQLite does not support FOR UPDATE so nothing to do.
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,8 +22,8 @@ class Log {
|
|||
*
|
||||
* array(
|
||||
* $logging_key = array(
|
||||
* array(query => '', args => array(), caller => '', target => '', time => 0),
|
||||
* array(query => '', args => array(), caller => '', target => '', time => 0),
|
||||
* array('query' => '', 'args' => array(), 'caller' => '', 'target' => '', 'time' => 0),
|
||||
* array('query' => '', 'args' => array(), 'caller' => '', 'target' => '', 'time' => 0),
|
||||
* ),
|
||||
* );
|
||||
*
|
||||
|
|
|
@ -819,7 +819,7 @@ class Select extends Query implements SelectInterface {
|
|||
|
||||
// Don't use the AS keyword for table aliases, as some
|
||||
// databases don't support it (e.g., Oracle).
|
||||
$query .= $table_string . ' ' . $this->connection->escapeTable($table['alias']);
|
||||
$query .= $table_string . ' ' . $this->connection->escapeTable($table['alias']);
|
||||
|
||||
if (!empty($table['condition'])) {
|
||||
$query .= ' ON ' . $table['condition'];
|
||||
|
|
Reference in a new issue