Description of problem: when running : cms/sql/default/upgrade/6.0.0-6.0.1/update-bundle-type-id.sql and with a database having a content item with several pending instances, the following error occurs : ERROR at line 1: ORA-01427: single-row subquery returns more than one row The reason why this exception occurs is because the inner query retrieves several values when the content item has several pending instances. The solution is to replace in file cms/sql/default/upgrade/6.0.0-6.0.1/update-bundle-type-id.sql : > set type_id = (select i.type_id by > set type_id = (select distinct i.type_id Version-Release number of selected component (if applicable): CMS 6.0.0 (for upgrade to 6.0.1) How reproducible: always
Thanks for catching this. The changes have been checked in.