aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/db_tools.php
diff options
context:
space:
mode:
authorPatrick Webster <noxwizard@phpbb.com>2011-09-04 20:31:34 -0500
committerPatrick Webster <noxwizard@phpbb.com>2011-09-04 20:31:34 -0500
commit5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df (patch)
tree567e53b9c56ff5b92c997c38391b4794d1af61f2 /phpBB/includes/db/db_tools.php
parent8e5eacf6924866a66bd939292e787caea4b7a32e (diff)
downloadforums-5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df.tar
forums-5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df.tar.gz
forums-5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df.tar.bz2
forums-5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df.tar.xz
forums-5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df.zip
[ticket/10352] Add missing break for Oracle's sql_table_drop()
PHPBB3-10352
Diffstat (limited to 'phpBB/includes/db/db_tools.php')
-rw-r--r--phpBB/includes/db/db_tools.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php
index 2cb0fcef68..48bbefa2dd 100644
--- a/phpBB/includes/db/db_tools.php
+++ b/phpBB/includes/db/db_tools.php
@@ -1956,6 +1956,7 @@ class phpbb_db_tools
$statements[] = "DROP SEQUENCE {$row['referenced_name']}";
}
$this->db->sql_freeresult($result);
+ break;
case 'postgres':
// PGSQL does not "tightly" bind sequences and tables, we must guess...