mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
6950: Fix for forum issue (6111) when using xsl:include 6951: Partial fix for WCM-862 6952: Merged V1.4 to V2.1 6921: Reindex tracking refactoring. 6954: Merged V1.4 to V2.1 6927: Config and startup changes for index tracking git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7369 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
18 lines
725 B
SQL
18 lines
725 B
SQL
--
|
|
-- Explicit index for alf_transaction.commit_time_ms (Generic Schema 1.4)
|
|
--
|
|
|
|
CREATE INDEX idx_commit_time_ms ON alf_transaction (commit_time_ms);
|
|
UPDATE alf_transaction SET commit_time_ms = id WHERE commit_time_ms IS NULL;
|
|
|
|
--
|
|
-- Record script finish
|
|
--
|
|
delete from alf_applied_patch where id = 'patch.db-V1.4-TxnCommitTimeIndex';
|
|
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-V1.4-TxnCommitTimeIndex', 'Executed script AlfrescoSchemaUpdate-1.4-TxnCommitTimeIndex.sql',
|
|
0, 75, -1, 76, null, 'UNKOWN', 1, 1, 'Script completed'
|
|
); |