diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-05-29 01:51:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-05-29 01:51:46 +0000 |
commit | 114a7f2cb38c807c2315efe1fe6ba5fb5cc78121 (patch) | |
tree | 2b61aed370152d3e3293385ef6be319766c876dc /includes/database/mysql | |
parent | 2df43894e2f24cb6a39e6cf11a3b39f3c4b70193 (diff) | |
download | brdo-114a7f2cb38c807c2315efe1fe6ba5fb5cc78121.tar.gz brdo-114a7f2cb38c807c2315efe1fe6ba5fb5cc78121.tar.bz2 |
#471800 follow-up by stella: Fixing comments on MySQL system queries.
Diffstat (limited to 'includes/database/mysql')
-rw-r--r-- | includes/database/mysql/schema.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database/mysql/schema.inc b/includes/database/mysql/schema.inc index 45543d253..35d59c1a1 100644 --- a/includes/database/mysql/schema.inc +++ b/includes/database/mysql/schema.inc @@ -372,11 +372,11 @@ class DatabaseSchema_mysql extends DatabaseSchema { if (isset($column)) { $condition->condition('column_name', $column); $condition->compile($this->connection); - // Don't use {} around information_schema table. + // Don't use {} around information_schema.columns table. return db_query("SELECT column_comment FROM information_schema.columns WHERE " . (string) $condition, $condition->arguments())->fetchField(); } $condition->compile($this->connection); - // Don't use {} around information_schema table. + // Don't use {} around information_schema.tables table. $comment = db_query("SELECT table_comment FROM information_schema.tables WHERE " . (string) $condition, $condition->arguments())->fetchField(); // Work-around for MySQL 5.0 bug http://bugs.mysql.com/bug.php?id=11379 return preg_replace('/; InnoDB free:.*$/', '', $comment); |