mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
Make generators reentrant. MDL-14897
This commit is contained in:
parent
c8d03b6716
commit
ed55f6682b
@ -7,7 +7,7 @@
|
||||
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
||||
// http://moodle.com //
|
||||
// //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com //
|
||||
// //
|
||||
// This program is free software; you can redistribute it and/or modify //
|
||||
@ -361,8 +361,7 @@ class mssql_sql_generator extends sql_generator {
|
||||
}
|
||||
|
||||
/// Just prevent default clauses in this type of sentences for mssql and launch the parent one
|
||||
$this->alter_column_skip_default = true;
|
||||
$results = array_merge($results, parent::getAlterFieldSQL($xmldb_table, $xmldb_field)); // Call parent
|
||||
$results = array_merge($results, parent::getAlterFieldSQL($xmldb_table, $xmldb_field, NULL, true, NULL)); // Call parent
|
||||
|
||||
/// Finally, process the default clause to add it back if necessary
|
||||
if ($typechanged || $lengthchanged) {
|
||||
@ -478,7 +477,7 @@ class mssql_sql_generator extends sql_generator {
|
||||
|
||||
/// Get the quoted name of the table and field
|
||||
$tablename = $this->getTableName($xmldb_table);
|
||||
$fieldname = $this->getEncQuoted($xmldb_field->getName());
|
||||
$fieldname = $xmldb_field->getName();
|
||||
|
||||
/// Look for any default constraint in this field and drop it
|
||||
if ($default = get_record_sql("SELECT id, object_name(cdefault) AS defaultconstraint
|
||||
|
@ -7,7 +7,7 @@
|
||||
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
||||
// http://moodle.com //
|
||||
// //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com //
|
||||
// //
|
||||
// This program is free software; you can redistribute it and/or modify //
|
||||
|
@ -7,7 +7,7 @@
|
||||
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
||||
// http://moodle.com //
|
||||
// //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com //
|
||||
// //
|
||||
// This program is free software; you can redistribute it and/or modify //
|
||||
@ -333,7 +333,7 @@ class oracle_sql_generator extends sql_generator {
|
||||
|
||||
/// Get the quoted name of the table and field
|
||||
$tablename = $this->getTableName($xmldb_table);
|
||||
$fieldname = $this->getEncQuoted($xmldb_field->getName());
|
||||
$fieldname = $xmldb_field->getName();
|
||||
|
||||
/// Take a look to field metadata
|
||||
$meta = $this->mdb->get_columns($tablename);
|
||||
|
@ -7,7 +7,7 @@
|
||||
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
||||
// http://moodle.com //
|
||||
// //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
||||
// (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com //
|
||||
// //
|
||||
// This program is free software; you can redistribute it and/or modify //
|
||||
@ -183,7 +183,11 @@ class postgres_sql_generator extends sql_generator {
|
||||
*
|
||||
* This function can be safely removed once min req. for PG will be 8.0
|
||||
*/
|
||||
public function getAddFieldSQL($xmldb_table, $xmldb_field) {
|
||||
public function getAddFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause = NULL, $skip_default_clause = NULL, $skip_notnull_clause = NULL) {
|
||||
|
||||
$skip_type_clause = is_null($skip_type_clause) ? $this->alter_column_skip_type : $skip_type_clause;
|
||||
$skip_default_clause = is_null($skip_default_clause) ? $this->alter_column_skip_default : $skip_default_clause;
|
||||
$skip_notnull_clause = is_null($skip_notnull_clause) ? $this->alter_column_skip_notnull : $skip_notnull_clause;
|
||||
|
||||
$results = array();
|
||||
|
||||
@ -192,21 +196,10 @@ class postgres_sql_generator extends sql_generator {
|
||||
|
||||
$defaultvalue = $xmldb_field->getDefault();
|
||||
|
||||
/// Save old flags
|
||||
$old_skip_default = $this->alter_column_skip_default;
|
||||
$old_skip_notnull = $this->alter_column_skip_notnull;
|
||||
|
||||
/// Prevent default clause and launch parent getAddField()
|
||||
$this->alter_column_skip_default = true;
|
||||
$this->alter_column_skip_notnull = true;
|
||||
$results = parent::getAddFieldSQL($xmldb_table, $xmldb_field);
|
||||
|
||||
/// Re-set old flags
|
||||
$this->alter_column_skip_default = $old_skip_default;
|
||||
$this->alter_column_skip_notnull = $old_skip_notnull;
|
||||
$results = parent::getAddFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause, $skip_default_clause, $skip_notnull_clause);
|
||||
|
||||
/// Add default (only if not skip_default)
|
||||
if (!$this->alter_column_skip_default) {
|
||||
if (!$skip_default_clause) {
|
||||
$default_clause = $this->getDefaultClause($xmldb_field);
|
||||
if ($default_clause) {
|
||||
$sql = 'ALTER TABLE ' . $tablename . ' ALTER COLUMN ' . $fieldname . ' SET' . $default_clause; /// Add default clause
|
||||
@ -224,7 +217,7 @@ class postgres_sql_generator extends sql_generator {
|
||||
}
|
||||
|
||||
/// Add not null (only if no skip_notnull)
|
||||
if (!$this->alter_column_skip_notnull) {
|
||||
if (!$skip_notnull_clause) {
|
||||
if ($xmldb_field->getNotnull()) {
|
||||
$results[] = 'ALTER TABLE ' . $tablename . ' ALTER COLUMN ' . $fieldname . ' SET NOT NULL'; /// Add not null
|
||||
}
|
||||
@ -325,12 +318,10 @@ class postgres_sql_generator extends sql_generator {
|
||||
/// - rename the temp column to the original name
|
||||
if ($typechanged || $precisionchanged || $decimalchanged) {
|
||||
$tempcolname = $xmldb_field->getName() . '_alter_column_tmp';
|
||||
/// Prevent temp field to have both NULL/NOT NULL and DEFAULT constraints
|
||||
$this->alter_column_skip_notnull = true;
|
||||
$this->alter_column_skip_default = true;
|
||||
$xmldb_field->setName($tempcolname);
|
||||
/// Create the temporal column
|
||||
$results = array_merge($results, $this->getAddFieldSQL($xmldb_table, $xmldb_field));
|
||||
/// Prevent temp field to have both NULL/NOT NULL and DEFAULT constraints
|
||||
$results = array_merge($results, $this->getAddFieldSQL($xmldb_table, $xmldb_field, NULL, true, true));
|
||||
/// Detect some basic casting options
|
||||
if ((substr($oldmetatype, 0, 1) == 'C' && $xmldb_field->getType() == XMLDB_TYPE_NUMBER) ||
|
||||
(substr($oldmetatype, 0, 1) == 'C' && $xmldb_field->getType() == XMLDB_TYPE_FLOAT)) {
|
||||
|
@ -361,7 +361,12 @@ abstract class sql_generator {
|
||||
/**
|
||||
* Given one correct XMLDBField, returns the complete SQL line to create it
|
||||
*/
|
||||
public function getFieldSQL($xmldb_field, $skip_type_clause = false, $skip_default_clause = false, $skip_notnull_clause = false) {
|
||||
public function getFieldSQL($xmldb_field, $skip_type_clause = NULL, $skip_default_clause = NULL, $skip_notnull_clause = NULL, $specify_nulls_clause = NULL) {
|
||||
|
||||
$skip_type_clause = is_null($skip_type_clause) ? $this->alter_column_skip_type : $skip_type_clause;
|
||||
$skip_default_clause = is_null($skip_default_clause) ? $this->alter_column_skip_default : $skip_default_clause;
|
||||
$skip_notnull_clause = is_null($skip_notnull_clause) ? $this->alter_column_skip_notnull : $skip_notnull_clause;
|
||||
$specify_nulls_clause = is_null($specify_nulls_clause) ? $this->specify_nulls : $specify_nulls_clause;
|
||||
|
||||
/// First of all, convert integers to numbers if defined
|
||||
if ($this->integer_to_number) {
|
||||
@ -403,7 +408,7 @@ abstract class sql_generator {
|
||||
if ($xmldb_field->getNotNull()) {
|
||||
$notnull = ' NOT NULL';
|
||||
} else {
|
||||
if ($this->specify_nulls) {
|
||||
if ($specify_nulls_clause) {
|
||||
$notnull = ' NULL';
|
||||
}
|
||||
}
|
||||
@ -567,7 +572,11 @@ abstract class sql_generator {
|
||||
/**
|
||||
* Given one XMLDBTable and one XMLDBField, return the SQL statements needded to add the field to the table
|
||||
*/
|
||||
public function getAddFieldSQL($xmldb_table, $xmldb_field) {
|
||||
public function getAddFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause = NULL, $skip_default_clause = NULL, $skip_notnull_clause = NULL) {
|
||||
|
||||
$skip_type_clause = is_null($skip_type_clause) ? $this->alter_column_skip_type : $skip_type_clause;
|
||||
$skip_default_clause = is_null($skip_default_clause) ? $this->alter_column_skip_default : $skip_default_clause;
|
||||
$skip_notnull_clause = is_null($skip_notnull_clause) ? $this->alter_column_skip_notnull : $skip_notnull_clause;
|
||||
|
||||
$results = array();
|
||||
|
||||
@ -575,9 +584,9 @@ abstract class sql_generator {
|
||||
$tablename = $this->getTableName($xmldb_table);
|
||||
|
||||
/// Build the standard alter table add
|
||||
$sql = $this->getFieldSQL($xmldb_field, $this->alter_column_skip_type,
|
||||
$this->alter_column_skip_default,
|
||||
$this->alter_column_skip_notnull);
|
||||
$sql = $this->getFieldSQL($xmldb_field, $skip_type_clause,
|
||||
$skip_default_clause,
|
||||
$skip_notnull_clause);
|
||||
$altertable = 'ALTER TABLE ' . $tablename . ' ADD ' . $sql;
|
||||
/// Add the after clause if necesary
|
||||
if ($this->add_after_clause && $xmldb_field->getPrevious()) {
|
||||
@ -616,22 +625,24 @@ abstract class sql_generator {
|
||||
/**
|
||||
* Given one XMLDBTable and one XMLDBField, return the SQL statements needded to alter the field in the table
|
||||
*/
|
||||
public function getAlterFieldSQL($xmldb_table, $xmldb_field) {
|
||||
public function getAlterFieldSQL($xmldb_table, $xmldb_field, $skip_type_clause = NULL, $skip_default_clause = NULL, $skip_notnull_clause = NULL) {
|
||||
|
||||
$skip_type_clause = is_null($skip_type_clause) ? $this->alter_column_skip_type : $skip_type_clause;
|
||||
$skip_default_clause = is_null($skip_default_clause) ? $this->alter_column_skip_default : $skip_default_clause;
|
||||
$skip_notnull_clause = is_null($skip_notnull_clause) ? $this->alter_column_skip_notnull : $skip_notnull_clause;
|
||||
|
||||
$results = array();
|
||||
|
||||
/// Always specify NULLs in alter fields because we can change not nulls to nulls
|
||||
$this->specify_nulls = true;
|
||||
|
||||
/// Get the quoted name of the table and field
|
||||
$tablename = $this->getTableName($xmldb_table);
|
||||
$fieldname = $this->getEncQuoted($xmldb_field->getName());
|
||||
|
||||
/// Build de alter sentence using the alter_column_sql template
|
||||
$alter = str_replace('TABLENAME', $this->getTableName($xmldb_table), $this->alter_column_sql);
|
||||
$colspec = $this->getFieldSQL($xmldb_field, $this->alter_column_skip_type,
|
||||
$this->alter_column_skip_default,
|
||||
$this->alter_column_skip_notnull);
|
||||
$colspec = $this->getFieldSQL($xmldb_field, $skip_type_clause,
|
||||
$skip_default_clause,
|
||||
$skip_notnull_clause,
|
||||
true);
|
||||
$alter = str_replace('COLUMNSPECS', $colspec, $alter);
|
||||
|
||||
/// Add the after clause if necesary
|
||||
|
Loading…
x
Reference in New Issue
Block a user