1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-29 21:10:31 +02:00

[ticket/9725] Add dummy indexes for Azure

SQL Azure requires a primary AKA clustered key on every table.
This adds a dummy INT column to act as key,
avoiding possible duplicate entries.
so that these columns can support bigger (speak: huge) tables

PHPBB3-9725
This commit is contained in:
Henry Sudhof
2012-04-12 18:39:40 +02:00
committed by Patrick Webster
parent fd4f973440
commit b993fa54a5
2 changed files with 56 additions and 56 deletions

View File

@@ -237,6 +237,19 @@ $supported_dbms = array('firebird', 'mssql', 'mysql_40', 'mysql_41', 'oracle', '
foreach ($supported_dbms as $dbms)
{
$schema_data = get_schema_struct();
if ($dbms == 'mssql')
{
foreach ($schema_data as $table_name => $table_data)
{
if (!isset($table_data['PRIMARY_KEY']))
{
$schema_data[$table_name]['COLUMNS']['mssqlindex'] = array('UINT', NULL, 'auto_increment');
$schema_data[$table_name]['PRIMARY_KEY'] = 'mssqlindex';
}
}
}
$fp = fopen($schema_path . $dbms . '_schema.sql', 'wb');
$line = '';
@@ -863,9 +876,8 @@ function get_schema_struct()
'KEYS' => array(
'group_id' => array('INDEX', 'group_id'),
'auth_opt_id' => array('INDEX', 'auth_option_id'),
'auth_role_id' => array('INDEX', 'auth_role_id', 'auth_option_id'),
'auth_role_id' => array('INDEX', 'auth_role_id'),
),
'PRIMARY_KEY' => array('group_id', 'forum_id', 'auth_option_id', 'auth_role_id', 'auth_setting'),
);
$schema_data['phpbb_acl_options'] = array(
@@ -922,7 +934,6 @@ function get_schema_struct()
'auth_option_id' => array('INDEX', 'auth_option_id'),
'auth_role_id' => array('INDEX', 'auth_role_id'),
),
'PRIMARY_KEY' => array('user_id', 'forum_id', 'auth_option_id', 'auth_role_id', 'auth_setting'),
);
$schema_data['phpbb_banlist'] = array(
@@ -1144,7 +1155,6 @@ function get_schema_struct()
'user_id' => array('INDEX', 'user_id'),
'notify_stat' => array('INDEX', 'notify_status'),
),
'PRIMARY_KEY' => array('forum_id', 'user_id'),
);
$schema_data['phpbb_groups'] = array(
@@ -1261,8 +1271,6 @@ function get_schema_struct()
'disp_idx' => array('INDEX', 'display_on_index'),
'forum_id' => array('INDEX', 'forum_id'),
),
'PRIMARY_KEY' => array('forum_id', 'user_id', 'group_id'),
);
$schema_data['phpbb_modules'] = array(
@@ -1298,7 +1306,6 @@ function get_schema_struct()
'poll_opt_id' => array('INDEX', 'poll_option_id'),
'topic_id' => array('INDEX', 'topic_id'),
),
'PRIMARY_KEY' => array('topic_id', 'poll_option_id'),
);
$schema_data['phpbb_poll_votes'] = array(
@@ -1313,7 +1320,6 @@ function get_schema_struct()
'vote_user_id' => array('INDEX', 'vote_user_id'),
'vote_user_ip' => array('INDEX', 'vote_user_ip'),
),
'PRIMARY_KEY' => array('topic_id', 'poll_option_id', 'vote_user_id'),
);
$schema_data['phpbb_posts'] = array(
@@ -1440,7 +1446,6 @@ function get_schema_struct()
'author_id' => array('INDEX', 'author_id'),
'usr_flder_id' => array('INDEX', array('user_id', 'folder_id')),
),
'PRIMARY_KEY' => array('msg_id', 'user_id', 'author_id'),
);
$schema_data['phpbb_profile_fields'] = array(
@@ -1576,7 +1581,6 @@ function get_schema_struct()
'word_id' => array('INDEX', 'word_id'),
'post_id' => array('INDEX', 'post_id'),
),
'PRIMARY_KEY' => array('post_id', 'word_id'),
);
$schema_data['phpbb_sessions'] = array(
@@ -1692,7 +1696,6 @@ function get_schema_struct()
'tid' => array('INDEX', 'template_id'),
'tfn' => array('INDEX', 'template_filename'),
),
'PRIMARY_KEY' => array('template_id', 'template_filename'),
);
$schema_data['phpbb_styles_theme'] = array(
@@ -1822,7 +1825,6 @@ function get_schema_struct()
'user_id' => array('INDEX', 'user_id'),
'notify_stat' => array('INDEX', 'notify_status'),
),
'PRIMARY_KEY' => array('topic_id', 'user_id'),
);
$schema_data['phpbb_user_group'] = array(
@@ -1837,7 +1839,6 @@ function get_schema_struct()
'user_id' => array('INDEX', 'user_id'),
'group_leader' => array('INDEX', 'group_leader'),
),
'PRIMARY_KEY' => array('group_id', 'user_id'),
);
$schema_data['phpbb_users'] = array(