Update to Drupal 8.1.1. For more information, see https://www.drupal.org/node/2718713

This commit is contained in:
Pantheon Automation 2016-05-04 14:35:41 -07:00 committed by Greg Anderson
parent c0a0d5a94c
commit 9eae24d844
669 changed files with 3873 additions and 1553 deletions

View file

@ -11,4 +11,3 @@ namespace Drupal\Core\Database;
* developers should account for it separately.
*/
interface DatabaseException { }

View file

@ -12,4 +12,4 @@ class Select extends QuerySelect {
// SQLite does not support FOR UPDATE so nothing to do.
return $this;
}
}
}

View file

@ -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),
* ),
* );
*

View file

@ -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'];