Skip to content

Commit

Permalink
Merge branch 'w50_MDL-36493_m24_mysql' of git://github.com/skodak/moo…
Browse files Browse the repository at this point in the history
…dle into MOODLE_24_STABLE
  • Loading branch information
danpoltawski committed Dec 17, 2012
2 parents 231f758 + 3d4de0b commit e8e9393
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 76 deletions.
13 changes: 3 additions & 10 deletions lib/db/upgrade.php
Expand Up @@ -227,17 +227,10 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2012030100.01);
}

if ($oldversion < 2012030100.02) {
// migrate all numbers to signed - it should be safe to interrupt this and continue later
upgrade_mysql_fix_unsigned_columns();

// Main savepoint reached
upgrade_main_savepoint(true, 2012030100.02);
}

if ($oldversion < 2012030900.01) {
// migrate all texts and binaries to big size - it should be safe to interrupt this and continue later
upgrade_mysql_fix_lob_columns();
// Migrate all numbers to signed & all texts and binaries to big size.
// It should be safe to interrupt this and continue later.
upgrade_mysql_fix_unsigned_and_lob_columns();

// Main savepoint reached
upgrade_main_savepoint(true, 2012030900.01);
Expand Down
98 changes: 32 additions & 66 deletions lib/db/upgradelib.php
Expand Up @@ -77,22 +77,23 @@ function upgrade_mysql_get_supported_tables() {
}

/**
* Remove all signed numbers from current database - mysql only.
* Remove all signed numbers from current database and change
* text fields to long texts - mysql only.
*/
function upgrade_mysql_fix_unsigned_columns() {
// we are not using standard API for changes of column
// because everything 'signed'-related will be removed soon
function upgrade_mysql_fix_unsigned_and_lob_columns() {
// We are not using standard API for changes of column
// because everything 'signed'-related will be removed soon.

// if anybody already has numbers higher than signed limit the execution stops
// and tables must be fixed manually before continuing upgrade
// If anybody already has numbers higher than signed limit the execution stops
// and tables must be fixed manually before continuing upgrade.

global $DB;

if ($DB->get_dbfamily() !== 'mysql') {
return;
}

$pbar = new progress_bar('mysqlconvertunsigned', 500, true);
$pbar = new progress_bar('mysqlconvertunsignedlobs', 500, true);

$prefix = $DB->get_prefix();
$tables = upgrade_mysql_get_supported_tables();
Expand All @@ -101,16 +102,12 @@ function upgrade_mysql_fix_unsigned_columns() {
$i = 0;
foreach ($tables as $table) {
$i++;
// set appropriate timeout - 5 minutes per milion of records should be enough, min 60 minutes just in case
$count = $DB->count_records($table, array());
$timeout = ($count/1000000)*5*60;
$timeout = ($timeout < 60*60) ? 60*60 : (int)$timeout;

$changes = array();

$sql = "SHOW COLUMNS FROM `{{$table}}`";
$rs = $DB->get_recordset_sql($sql);
foreach ($rs as $column) {
upgrade_set_timeout($timeout);

$column = (object)array_change_key_case((array)$column, CASE_LOWER);
if (stripos($column->type, 'unsigned') !== false) {
$maxvalue = 0;
Expand All @@ -134,67 +131,36 @@ function upgrade_mysql_fix_unsigned_columns() {
$notnull = ($column->null === 'NO') ? 'NOT NULL' : 'NULL';
$default = (!is_null($column->default) and $column->default !== '') ? "DEFAULT '$column->default'" : '';
$autoinc = (stripos($column->extra, 'auto_increment') !== false) ? 'AUTO_INCREMENT' : '';
// primary and unique not necessary here, change_database_structure does not add prefix
$sql = "ALTER TABLE `{$prefix}$table` MODIFY COLUMN `$column->field` $type $notnull $default $autoinc";
$DB->change_database_structure($sql);
}
}
$rs->close();

$pbar->update($i, $tablecount, "Converted unsigned columns in MySQL database - $i/$tablecount.");
}
}

/**
* Migrate all text and binary columns to big size - mysql only.
*/
function upgrade_mysql_fix_lob_columns() {
// we are not using standard API for changes of column intentionally

global $DB;

if ($DB->get_dbfamily() !== 'mysql') {
return;
}

$pbar = new progress_bar('mysqlconvertlobs', 500, true);

$prefix = $DB->get_prefix();
$tables = upgrade_mysql_get_supported_tables();
asort($tables);

$tablecount = count($tables);
$i = 0;
foreach ($tables as $table) {
$i++;
// set appropriate timeout - 1 minute per thousand of records should be enough, min 60 minutes just in case
$count = $DB->count_records($table, array());
$timeout = ($count/1000)*60;
$timeout = ($timeout < 60*60) ? 60*60 : (int)$timeout;

$sql = "SHOW COLUMNS FROM `{{$table}}`";
$rs = $DB->get_recordset_sql($sql);
foreach ($rs as $column) {
upgrade_set_timeout($timeout);
// Primary and unique not necessary here, change_database_structure does not add prefix.
$changes[] = "MODIFY COLUMN `$column->field` $type $notnull $default $autoinc";

$column = (object)array_change_key_case((array)$column, CASE_LOWER);
if ($column->type === 'tinytext' or $column->type === 'mediumtext' or $column->type === 'text') {
} else if ($column->type === 'tinytext' or $column->type === 'mediumtext' or $column->type === 'text') {
$notnull = ($column->null === 'NO') ? 'NOT NULL' : 'NULL';
$default = (!is_null($column->default) and $column->default !== '') ? "DEFAULT '$column->default'" : '';
// primary, unique and inc are not supported for texts
$sql = "ALTER TABLE `{$prefix}$table` MODIFY COLUMN `$column->field` LONGTEXT $notnull $default";
$DB->change_database_structure($sql);
}
if ($column->type === 'tinyblob' or $column->type === 'mediumblob' or $column->type === 'blob') {
// Primary, unique and inc are not supported for texts.
$changes[] = "MODIFY COLUMN `$column->field` LONGTEXT $notnull $default";

} else if ($column->type === 'tinyblob' or $column->type === 'mediumblob' or $column->type === 'blob') {
$notnull = ($column->null === 'NO') ? 'NOT NULL' : 'NULL';
$default = (!is_null($column->default) and $column->default !== '') ? "DEFAULT '$column->default'" : '';
// primary, unique and inc are not supported for blobs
$sql = "ALTER TABLE `{$prefix}$table` MODIFY COLUMN `$column->field` LONGBLOB $notnull $default";
$DB->change_database_structure($sql);
// Primary, unique and inc are not supported for blobs.
$changes[] = "MODIFY COLUMN `$column->field` LONGBLOB $notnull $default";
}

}
$rs->close();

$pbar->update($i, $tablecount, "Converted LOB columns in MySQL database - $i/$tablecount.");
if ($changes) {
// Set appropriate timeout - 1 minute per thousand of records should be enough, min 60 minutes just in case.
$count = $DB->count_records($table, array());
$timeout = ($count/1000)*60;
$timeout = ($timeout < 60*60) ? 60*60 : (int)$timeout;
upgrade_set_timeout($timeout);

$sql = "ALTER TABLE `{$prefix}$table` ".implode(', ', $changes);
$DB->change_database_structure($sql);
}

$pbar->update($i, $tablecount, "Converted unsigned/lob columns in MySQL database - $i/$tablecount.");
}
}

0 comments on commit e8e9393

Please sign in to comment.