From 5c7f5f05166aa5e493f2cbeddd2b5e36eb80d4df Mon Sep 17 00:00:00 2001 From: Patrick Webster Date: Sun, 4 Sep 2011 20:31:34 -0500 Subject: [PATCH] [ticket/10352] Add missing break for Oracle's sql_table_drop() PHPBB3-10352 --- phpBB/includes/db/db_tools.php | 1 + 1 file changed, 1 insertion(+) 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...