1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 22:45:02 +02:00

[ticket/10352] Add missing break for Oracle's sql_table_drop()

PHPBB3-10352
This commit is contained in:
Patrick Webster 2011-09-04 20:31:34 -05:00
parent 8e5eacf692
commit 5c7f5f0516

View File

@ -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...