Files
opensim/OpenSim/Data/MySQL/Resources/012_RegionStore.sql
T
Sean Dague 2a30e85c97 added index to ParentID on prims, as this is sorted on for prim loading.
This should speed up initial load of prims, especially on primy regions.
2008-07-16 22:16:46 +00:00

5 lines
70 B
PL/PgSQL

BEGIN;
ALTER TABLE prims add index prims_parentid(ParentID);
COMMIT;