summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 5e2f5395f..8a253ecaa 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -293,7 +293,7 @@ function system_install() {
if (db_driver() == 'pgsql') {
// We create some functions using global names instead of prefixing them
// like we do with table names. If this function is ever called again (for
- // example, by the test framework when creating prefixed test databases),
+ // example, by the test framework when creating prefixed test databases),
// the global names will already exist. We therefore avoid trying to create
// them again in that case.
@@ -3140,11 +3140,11 @@ function system_update_7016() {
$ret = array();
// Only run these queries if the driver used is pgsql.
if (db_driver() == 'pgsql') {
- $result = db_query("SELECT c.relname AS table, a.attname AS field,
- pg_catalog.format_type(a.atttypid, a.atttypmod) AS type
- FROM pg_catalog.pg_attribute a
- LEFT JOIN pg_class c ON (c.oid = a.attrelid)
- WHERE pg_catalog.pg_table_is_visible(c.oid) AND c.relkind = 'r'
+ $result = db_query("SELECT c.relname AS table, a.attname AS field,
+ pg_catalog.format_type(a.atttypid, a.atttypmod) AS type
+ FROM pg_catalog.pg_attribute a
+ LEFT JOIN pg_class c ON (c.oid = a.attrelid)
+ WHERE pg_catalog.pg_table_is_visible(c.oid) AND c.relkind = 'r'
AND pg_catalog.format_type(a.atttypid, a.atttypmod) LIKE '%unsigned%'");
while ($row = db_fetch_object($result)) {
switch ($row->type) {
@@ -3157,7 +3157,7 @@ function system_update_7016() {
$datatype = 'bigint';
break;
}
- $ret[] = update_sql('ALTER TABLE ' . $row->table . ' ALTER COLUMN ' . $row->field . ' TYPE ' . $datatype);
+ $ret[] = update_sql('ALTER TABLE ' . $row->table . ' ALTER COLUMN ' . $row->field . ' TYPE ' . $datatype);
$ret[] = update_sql('ALTER TABLE ' . $row->table . ' ADD CHECK (' . $row->field . ' >= 0)');
}
$ret[] = update_sql('DROP DOMAIN smallint_unsigned');