MDL-32434 deprecate drop_temp_table() in favour of drop_table()

This commit is contained in:
Petr Skoda
2012-04-15 12:23:15 +02:00
parent 9b3323b8be
commit a66b2ae4f4
14 changed files with 26 additions and 85 deletions
-11
View File
@@ -100,17 +100,6 @@ class postgres_sql_generator extends sql_generator {
return $sqlarr;
}
/**
* Given one correct xmldb_table, returns the SQL statements
* to drop it (inside one array)
*
* @param xmldb_table $xmldb_table The table to drop.
* @return array SQL statement(s) for dropping the specified table.
*/
public function getDropTempTableSQL($xmldb_table) {
return $this->getDropTableSQL($xmldb_table);
}
/**
* Given one XMLDB Type, length and decimals, returns the DB proper SQL type
*/