diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-26 14:08:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-26 14:08:44 +0000 |
commit | 6d3d75fe4b8fb1c862010cc87839f1d9ede43265 (patch) | |
tree | b801374bf914048d8659cb8df8f014f1486ee5ec /includes/database/mysql | |
parent | 8851b57acf1391fe1dbfab4877c1fdc7d63aac63 (diff) | |
download | brdo-6d3d75fe4b8fb1c862010cc87839f1d9ede43265.tar.gz brdo-6d3d75fe4b8fb1c862010cc87839f1d9ede43265.tar.bz2 |
- Removing whitespace.
Diffstat (limited to 'includes/database/mysql')
-rw-r--r-- | includes/database/mysql/database.inc | 2 | ||||
-rw-r--r-- | includes/database/mysql/schema.inc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/includes/database/mysql/database.inc b/includes/database/mysql/database.inc index 281bcfa09..afea7ebda 100644 --- a/includes/database/mysql/database.inc +++ b/includes/database/mysql/database.inc @@ -16,7 +16,7 @@ class DatabaseConnection_mysql extends DatabaseConnection { public function __construct(array $connection_options = array()) { // This driver defaults to non transaction support. $this->transactionSupport = !empty($connection_option['transactions']); - + // MySQL never supports transactional DDL. $this->transactionalDDLSupport = FALSE; diff --git a/includes/database/mysql/schema.inc b/includes/database/mysql/schema.inc index 3a525a1f3..5b0aadee7 100644 --- a/includes/database/mysql/schema.inc +++ b/includes/database/mysql/schema.inc @@ -15,11 +15,11 @@ class DatabaseSchema_mysql extends DatabaseSchema { /** - * Build a condition to match a table name against a standard information_schema. + * Build a condition to match a table name against a standard information_schema. * * MySQL uses databases like schemas rather than catalogs so when we build * a condition to query the information_schema.tables, we set the default - * database as the schema unless specified otherwise, and exclude table_catalog + * database as the schema unless specified otherwise, and exclude table_catalog * from the condition criteria. */ protected function buildTableNameCondition($table_name, $operator = '=') { |