mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.0 to HEAD
svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5093 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5094 . - Fix AR-1024: AVM workflow submit NPE svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5188 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5189 . - PostgreSQL sample svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5191 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5193 . - PostgreSQL lurking JDBC driver git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5195 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
--
|
||||
-- Title: AVM Foreign Key indexes
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V2.0 Schema 38
|
||||
-- Author: Derek Hulley
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
CREATE INDEX fk_avm_asp_node ON avm_aspects (node_id);
|
||||
CREATE INDEX fk_avm_ce_child ON avm_child_entries (child_id);
|
||||
CREATE INDEX fk_avm_ce_parent ON avm_child_entries (parent_id);
|
||||
CREATE INDEX fk_avm_hl_desc ON avm_history_links (descendent);
|
||||
CREATE INDEX fk_avm_hl_ancestor ON avm_history_links (ancestor);
|
||||
CREATE INDEX fk_avm_ml_from ON avm_merge_links (mfrom);
|
||||
CREATE INDEX fk_avm_ml_to ON avm_merge_links (mto);
|
||||
CREATE INDEX fk_avm_np_node ON avm_node_properties (node_id);
|
||||
CREATE INDEX fk_avm_n_acl ON avm_nodes (acl_id);
|
||||
CREATE INDEX fk_avm_n_store ON avm_nodes (store_new_id);
|
||||
CREATE INDEX fk_avm_sp_store ON avm_store_properties (avm_store_id);
|
||||
CREATE INDEX fk_avm_s_root ON avm_stores (current_root_id);
|
||||
CREATE INDEX fk_avm_vr_store ON avm_version_roots (avm_store_id);
|
||||
CREATE INDEX fk_avm_vr_root ON avm_version_roots (root_id);
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V2.0-AVMFKIndexes';
|
||||
INSERT INTO alf_applied_patch
|
||||
(id, description, fixes_from_schema, fixes_to_schema, applied_to_schema, target_schema, applied_on_date, applied_to_server, was_executed, succeeded, report)
|
||||
VALUES
|
||||
(
|
||||
'patch.db-V2.0-AVMFKIndexes', 'Manually executed script upgrade V2.0: AVM Foreign Key Indexes',
|
||||
0, 37, -1, 38, null, 'UNKOWN', TRUE, TRUE, 'Script completed'
|
||||
);
|
@@ -0,0 +1,66 @@
|
||||
--
|
||||
-- Title: Explicit indexes
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V2.0 Schema 38
|
||||
-- Author: Derek Hulley
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
-- PostgreSQL cannot handle optional statements (statements that may fail) in the
|
||||
-- transaction.
|
||||
--
|
||||
|
||||
-- JBPM tables
|
||||
DROP INDEX IF EXISTS IDX_PLDACTR_ACTID;
|
||||
CREATE INDEX IDX_PLDACTR_ACTID ON JBPM_POOLEDACTOR (ACTORID_);
|
||||
DROP INDEX IF EXISTS IDX_TASK_ACTORID;
|
||||
CREATE INDEX IDX_TASK_ACTORID ON JBPM_TASKINSTANCE (ACTORID_);
|
||||
|
||||
-- Audit tables
|
||||
DROP INDEX IF EXISTS adt_q_idx;
|
||||
CREATE INDEX adt_q_idx ON alf_audit_date (quarter);
|
||||
DROP INDEX IF EXISTS adt_dow_idx;
|
||||
CREATE INDEX adt_dow_idx ON alf_audit_date (day_of_week);
|
||||
DROP INDEX IF EXISTS adt_date_idx;
|
||||
CREATE INDEX adt_date_idx ON alf_audit_date (date_only);
|
||||
DROP INDEX IF EXISTS adt_y_idx;
|
||||
CREATE INDEX adt_y_idx ON alf_audit_date (year);
|
||||
DROP INDEX IF EXISTS adt_hy_idx;
|
||||
CREATE INDEX adt_hy_idx ON alf_audit_date (halfYear);
|
||||
DROP INDEX IF EXISTS adt_wom_idx;
|
||||
CREATE INDEX adt_wom_idx ON alf_audit_date (week_of_month);
|
||||
DROP INDEX IF EXISTS adt_dom_idx;
|
||||
CREATE INDEX adt_dom_idx ON alf_audit_date (day_of_month);
|
||||
DROP INDEX IF EXISTS adt_m_idx;
|
||||
CREATE INDEX adt_m_idx ON alf_audit_date (month);
|
||||
DROP INDEX IF EXISTS adt_doy_idx;
|
||||
CREATE INDEX adt_doy_idx ON alf_audit_date (day_of_year);
|
||||
DROP INDEX IF EXISTS adt_woy_idx;
|
||||
CREATE INDEX adt_woy_idx ON alf_audit_date (week_of_year);
|
||||
DROP INDEX IF EXISTS adt_user_idx;
|
||||
CREATE INDEX adt_user_idx ON alf_audit_fact (user_id);
|
||||
DROP INDEX IF EXISTS adt_store_idx;
|
||||
CREATE INDEX adt_store_idx ON alf_audit_fact (store_protocol, store_id, node_uuid);
|
||||
DROP INDEX IF EXISTS app_source_met_idx;
|
||||
CREATE INDEX app_source_met_idx ON alf_audit_source (method);
|
||||
DROP INDEX IF EXISTS app_source_app_idx;
|
||||
CREATE INDEX app_source_app_idx ON alf_audit_source (application);
|
||||
DROP INDEX IF EXISTS app_source_ser_idx;
|
||||
CREATE INDEX app_source_ser_idx ON alf_audit_source (service);
|
||||
|
||||
-- AVM tables: These are new so are not optional
|
||||
CREATE INDEX idx_avm_np_name ON avm_node_properties (qname);
|
||||
CREATE INDEX idx_avm_sp_name ON avm_store_properties (qname);
|
||||
CREATE INDEX idx_avm_vr_version ON avm_version_roots (version_id);
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V2.0-ExplicitIndexes';
|
||||
INSERT INTO alf_applied_patch
|
||||
(id, description, fixes_from_schema, fixes_to_schema, applied_to_schema, target_schema, applied_on_date, applied_to_server, was_executed, succeeded, report)
|
||||
VALUES
|
||||
(
|
||||
'patch.db-V2.0-ExplicitIndexes', 'Manually executed script upgrade V2.0: Explicit Indexes',
|
||||
0, 37, -1, 38, null, 'UNKOWN', TRUE, TRUE, 'Script completed'
|
||||
);
|
@@ -58,3 +58,9 @@
|
||||
#
|
||||
#db.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
|
||||
#db.url=jdbc:sqlserver://localhost;DatabaseName=alfresco
|
||||
|
||||
#
|
||||
# PostgreSQL connection (requires postgresql-8.2-504.jdbc3.jar or equivalent)
|
||||
#
|
||||
#db.driver=org.postgresql.Driver
|
||||
#db.url=jdbc:postgresql://localhost:5432/alfresco
|
||||
|
@@ -139,6 +139,7 @@
|
||||
|
||||
<event type="process-end">
|
||||
<action class="org.alfresco.repo.avm.wf.AVMClearSubmittedHandler"/>
|
||||
<action class="org.alfresco.repo.avm.wf.AVMRemoveWFStoreHandler"/>
|
||||
</event>
|
||||
|
||||
</process-definition>
|
Reference in New Issue
Block a user