diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-02-07 08:28:32 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-02-07 08:28:32 -0800 |
commit | adac97b5372322be5154996974a6496198105d16 (patch) | |
tree | 5f06f49106066b9b31782910286313ff29b539a5 /modules/gallery/libraries | |
parent | 2c3c126aafaa4d7ed86075927887636042117a1c (diff) |
Add prefix support for the target of RENAME TABLE.
Diffstat (limited to 'modules/gallery/libraries')
-rw-r--r-- | modules/gallery/libraries/MY_Database.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/gallery/libraries/MY_Database.php b/modules/gallery/libraries/MY_Database.php index e2ef68cd..cb70104a 100644 --- a/modules/gallery/libraries/MY_Database.php +++ b/modules/gallery/libraries/MY_Database.php @@ -54,11 +54,18 @@ abstract class Database extends Database_Core { */ return $sql; } else if (strpos($sql, "CREATE TABLE") === 0) { - // Creating a new table add it to the table cache. + // Creating a new table; add it to the table cache. $open_brace = strpos($sql, "{") + 1; $close_brace = strpos($sql, "}", $open_brace); $name = substr($sql, $open_brace, $close_brace - $open_brace); $this->_table_names["{{$name}}"] = "{$prefix}$name"; + } else if (strpos($sql, "RENAME TABLE") === 0) { + // Renaming a table; add it to the table cache. + // You must use the form "TO {new_table_name}" exactly for this to work. + $open_brace = strpos($sql, "TO {") + 4; + $close_brace = strpos($sql, "}", $open_brace); + $name = substr($sql, $open_brace, $close_brace - $open_brace); + $this->_table_names["{{$name}}"] = "{$prefix}$name"; } if (!isset($this->_table_names)) { |