Closed
Description
Having the standard data imported, m0000800_alter_product_version_range_scheme
fails to complete withing 2 days.
The problem is the update statement, which has to process the following two tables:
trustify=# select count(*) from version_range;
count
-----------
243556450
trustify=# select count(*) from product_version_range;
count
-----------
145018502
The statement is:
UPDATE version_range SET version_scheme_id = 'rpm' WHERE id IN (SELECT version_range_id FROM product_version_range)