- Rollback #567148 because it breaks on some versions of MySQL.

merge-requests/26/head
Dries Buytaert 2009-09-05 13:35:54 +00:00
parent e8ae5c8b28
commit aab953e437
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class DatabaseConnection_mysql extends DatabaseConnection {
// kinds of database systems. These settings force MySQL to behave
// the same as postgresql, or sqlite in regards to syntax interpretation
// and invalid data handling. See http://drupal.org/node/344575 for further disscussion.
$this->exec("SET sql_mode='ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY'");
$this->exec("SET sql_mode='ANSI,TRADITIONAL'");
}
public function queryRange($query, array $args, $from, $count, array $options = array()) {