mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
10963: Merged DEV/LARGE_COLLECTION_PROPERTIES_2.2.1 to V2.2 - PersonService: Lucene removal - Lucene optimizations (in progress) - Multi-valued and locale-specific properties persisted in alf_node_properties - Removal of unused AVM tables 10987: Oracle dialects and enhanced SQL patch support - Only support Alfresco's 9i and 10g dialects (with auto-switching) - SQL script patches can now apply selectively to ranges 11007: Test to check cached retrieval of QNames git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@11206 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
158 lines
5.0 KiB
SQL
158 lines
5.0 KiB
SQL
--
|
|
-- Title: Pull MLText Values into Node Properties
|
|
-- Database: MySQL
|
|
-- Since: V2.2 Schema 91
|
|
-- Author: Derek Hulley
|
|
--
|
|
-- MLText values must be pulled back from attributes into localizable properties.
|
|
-- Several statements are not relevant to upgrades from below 77. These are optional.
|
|
--
|
|
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
|
--
|
|
|
|
CREATE TABLE alf_locale
|
|
(
|
|
id BIGINT NOT NULL AUTO_INCREMENT,
|
|
version BIGINT NOT NULL DEFAULT 1,
|
|
locale_str VARCHAR(20) NOT NULL,
|
|
PRIMARY KEY (id),
|
|
UNIQUE (locale_str)
|
|
) TYPE=InnoDB;
|
|
|
|
INSERT INTO alf_locale (id, locale_str) VALUES (1, '.default');
|
|
|
|
INSERT INTO alf_locale (locale_str)
|
|
SELECT DISTINCT(ma.mkey)
|
|
FROM alf_node_properties np
|
|
JOIN alf_attributes a1 ON (np.attribute_value = a1.id)
|
|
JOIN alf_map_attribute_entries ma ON (ma.map_id = a1.id)
|
|
; -- (OPTIONAL)
|
|
|
|
-- Create a temporary table to hold the attribute_value information that needs replacing
|
|
CREATE TABLE t_alf_node_properties
|
|
(
|
|
node_id BIGINT NOT NULL,
|
|
qname_id BIGINT NOT NULL,
|
|
list_index integer NOT NULL,
|
|
locale_id BIGINT NOT NULL,
|
|
actual_type_n integer NOT NULL,
|
|
persisted_type_n integer NOT NULL,
|
|
boolean_value BIT,
|
|
long_value BIGINT,
|
|
float_value FLOAT,
|
|
double_value DOUBLE PRECISION,
|
|
string_value TEXT,
|
|
serializable_value BLOB,
|
|
INDEX fk_alf_nprop_n (node_id),
|
|
CONSTRAINT fk_alf_nprop_n FOREIGN KEY (node_id) REFERENCES alf_node (id),
|
|
INDEX fk_alf_nprop_qn (qname_id),
|
|
CONSTRAINT fk_alf_nprop_qn FOREIGN KEY (qname_id) REFERENCES alf_qname (id),
|
|
INDEX fk_alf_nprop_loc (locale_id),
|
|
CONSTRAINT fk_alf_nprop_loc FOREIGN KEY (locale_id) REFERENCES alf_locale (id),
|
|
PRIMARY KEY (node_id, qname_id, list_index, locale_id)
|
|
) TYPE=InnoDB;
|
|
|
|
-- Copy all simple values over
|
|
INSERT INTO t_alf_node_properties
|
|
(
|
|
node_id, qname_id, list_index, locale_id,
|
|
actual_type_n, persisted_type_n,
|
|
boolean_value, long_value, float_value, double_value,
|
|
string_value,
|
|
serializable_value
|
|
)
|
|
SELECT
|
|
np.node_id, np.qname_id, -1, 1,
|
|
np.actual_type_n, np.persisted_type_n,
|
|
np.boolean_value, np.long_value, np.float_value, np.double_value,
|
|
np.string_value,
|
|
np.serializable_value
|
|
FROM alf_node_properties np
|
|
WHERE
|
|
np.attribute_value is null
|
|
;
|
|
|
|
-- Copy all MLText values over
|
|
INSERT INTO t_alf_node_properties
|
|
(
|
|
node_id, qname_id, list_index, locale_id,
|
|
actual_type_n, persisted_type_n,
|
|
boolean_value, long_value, float_value, double_value,
|
|
string_value,
|
|
serializable_value
|
|
)
|
|
SELECT
|
|
np.node_id, np.qname_id, -1, loc.id,
|
|
-1, 0,
|
|
FALSE, 0, 0, 0,
|
|
a2.string_value,
|
|
a2.serializable_value
|
|
FROM alf_node_properties np
|
|
JOIN alf_attributes a1 ON (np.attribute_value = a1.id)
|
|
JOIN alf_map_attribute_entries ma ON (ma.map_id = a1.id)
|
|
JOIN alf_locale loc ON (ma.mkey = loc.locale_str)
|
|
JOIN alf_attributes a2 ON (ma.attribute_id = a2.id)
|
|
; -- (OPTIONAL)
|
|
UPDATE t_alf_node_properties
|
|
SET actual_type_n = 6, persisted_type_n = 6, serializable_value = NULL
|
|
WHERE actual_type_n = -1 AND string_value IS NOT NULL
|
|
;
|
|
UPDATE t_alf_node_properties
|
|
SET actual_type_n = 9, persisted_type_n = 9
|
|
WHERE actual_type_n = -1 AND serializable_value IS NOT NULL
|
|
;
|
|
|
|
-- Delete the node properties and move the fixed values over
|
|
DROP TABLE alf_node_properties;
|
|
ALTER TABLE t_alf_node_properties RENAME TO alf_node_properties;
|
|
|
|
-- Clean up unused attribute values
|
|
|
|
CREATE TABLE t_del_attributes
|
|
(
|
|
id BIGINT NOT NULL,
|
|
PRIMARY KEY (id)
|
|
);
|
|
INSERT INTO t_del_attributes
|
|
SELECT id FROM alf_attributes WHERE type = 'M'
|
|
;
|
|
DELETE t_del_attributes
|
|
FROM t_del_attributes
|
|
JOIN alf_map_attribute_entries ma ON (ma.attribute_id = t_del_attributes.id)
|
|
;
|
|
DELETE t_del_attributes
|
|
FROM t_del_attributes
|
|
JOIN alf_list_attribute_entries la ON (la.attribute_id = t_del_attributes.id)
|
|
;
|
|
DELETE t_del_attributes
|
|
FROM t_del_attributes
|
|
JOIN alf_global_attributes ga ON (ga.attribute = t_del_attributes.id)
|
|
;
|
|
INSERT INTO t_del_attributes
|
|
SELECT a.id FROM t_del_attributes t
|
|
JOIN alf_map_attribute_entries ma ON (ma.map_id = t.id)
|
|
JOIN alf_attributes a ON (ma.attribute_id = a.id)
|
|
;
|
|
DELETE alf_map_attribute_entries
|
|
FROM alf_map_attribute_entries
|
|
JOIN t_del_attributes t ON (alf_map_attribute_entries.map_id = t.id)
|
|
;
|
|
DELETE alf_attributes
|
|
FROM alf_attributes
|
|
JOIN t_del_attributes t ON (alf_attributes.id = t.id)
|
|
;
|
|
DROP TABLE t_del_attributes;
|
|
|
|
|
|
--
|
|
-- Record script finish
|
|
--
|
|
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V2.2-1-MLText';
|
|
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.2-1-MLText', 'Manually executed script upgrade V2.2: Moved MLText values',
|
|
86, 90, -1, 91, null, 'UNKOWN', 1, 1, 'Script completed'
|
|
);
|