mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
7127: Merged V2.1 to V2.2 7118: Fixed overly-eager applicability of patches brought forward from previous releases 7119: Fixed SQL script patch schema numbering 7245: Merged V2.1 to V2.2: 7238: Serializes alfresco->alfresco deployments to the same target. 7241: Added AVM index tracking into the built-in, cron-controlled config. 7242: More DEBUG messages for index tracking, where required. 7243: Fix for url encoding issue as found by by Ishii Akinori 7372: Merged V2.1 to V2.2 7289: Fix for AWC-1542 where utf-8 characters not displaying correctly in RSS feed output 7300: Bumped up session size management values to reduce potential issues with mix-style, shorter transactions. 7303: Portlet updates for MSIE problems in Liferay. 7304: Added the <cifs-url-suffix>. AWC-1671. 7317: Fix OO shutdown 7319: Catch for raising rule executions using null NodeRefs. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7374 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
20 lines
786 B
SQL
20 lines
786 B
SQL
--
|
|
-- Some explicit indexes to improve performance for various use-cases (Generic Schema 1.4)
|
|
--
|
|
|
|
-- Association QNames
|
|
CREATE INDEX idx_ca_type_qname ON alf_child_assoc (type_qname);
|
|
CREATE INDEX idx_ca_qname ON alf_child_assoc (qname);
|
|
CREATE INDEX idx_na_type_qname ON alf_node_assoc (type_qname);
|
|
|
|
--
|
|
-- Record script finish
|
|
--
|
|
delete from alf_applied_patch where id = 'patch.db-V1.4-PerfIndexes02';
|
|
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-PerfIndexes02', 'Executed script AlfrescoSchemaUpdate-1.4-PerfIndexes02.sql',
|
|
0, 75, -1, 76, null, 'UNKOWN', 1, 1, 'Script completed'
|
|
); |