Skip to content
Snippets Groups Projects
Commit 4bf29632 authored by Angie Byron's avatar Angie Byron
Browse files

#363644 by chx: Remove annoying whitespace.

parent 250e486b
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment