-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 7.1.0, 7.2.0, 7.1.2, 7.1.1, 7.1.3, 7.1.4, 7.2.1
-
Component/s: Database (MS SQL), Database (MySQL), Database (Oracle), Database (Postgresql)
-
2
-
Severity 3 - Minor
-
0
Issue Summary
Bamboo database contains duplicate indexes.
Steps to Reproduce
- Install Bamboo and connect to any database (Oracle, PostgreSQL, MySQL or SQL Server)
- Restart Bamboo
Expected Results
The database should not contain any duplicate indexes.
Actual Results
You can find duplicate indexes after restarting Bamboo. The duplicate indexes are:
| Table | Indexes names |
|---|---|
| AO_A0B856_WEBHOOK_EVENT | index_ao_a0b856_web110787824, fkix_a0b856_webhook_event_webhookid |
| AO_7A45FB_AOTRACKING_RESULT | index_ao_7a45fb_aot1332136998, fkix_7a45fb_aotracking_result_linked_tracking_entry_id |
| AO_A0B856_WEBHOOK_CONFIG | index_ao_a0b856_web1050270930, fkix_a0b856_webhook_config_webhookid |
| AO_7A45FB_AOTRACKING_USER | index_ao_7a45fb_aot1861572280, fkix_7a45fb_aotracking_user_linked_tracking_entry_id |
Workaround
- Stop Bamboo server
- Backup Bamboo database for rollback pourposes
- Run the SQL commands below against Bamboo database:
DROP INDEX fkix_a0b856_webhook_event_webhookid; DROP INDEX fkix_7a45fb_aotracking_result_linked_tracking_entry_id; DROP INDEX fkix_a0b856_webhook_config_webhookid; DROP INDEX fkix_7a45fb_aotracking_user_linked_tracking_entry_id;
- Start Bamboo server
- mentioned in
-
Page Loading...