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/pgsql/schema.inc | |
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/pgsql/schema.inc')
-rw-r--r-- | includes/database/pgsql/schema.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/pgsql/schema.inc b/includes/database/pgsql/schema.inc index 5135b90df..fabdb09bc 100644 --- a/includes/database/pgsql/schema.inc +++ b/includes/database/pgsql/schema.inc @@ -51,7 +51,7 @@ class DatabaseSchema_pgsql extends DatabaseSchema { 'blob_fields' => array(), 'sequences' => array(), ); - // Don't use {} around information_schema table. + // Don't use {} around information_schema.columns table. $result = db_query("SELECT column_name, data_type, column_default FROM information_schema.columns WHERE table_schema = :schema AND table_name = :table AND (data_type = 'bytea' OR (numeric_precision IS NOT NULL AND column_default LIKE :default))", array(':schema' => $schema, ':table' => $table_name, ':default' => '%nextval%')); foreach ($result as $column) { if ($column->data_type == 'bytea') { |