#4081 Fix index creation
Opened 15 days ago by tkopecek. Modified 15 days ago
tkopecek/koji issue4080  into  master

@@ -2,8 +2,9 @@ 

  -- from version 1.33 to 1.34

  

  BEGIN;

+ -- schema changes here

+ COMMIT;

  

+ -- can't run inside transaction

  CREATE INDEX CONCURRENTLY IF NOT EXISTS rpminfo_nvra

      ON rpminfo(name,version,release,arch,external_repo_id);

- 

- COMMIT;

@mikem hesitating if we want to have faster migration or safer but blocking index creation.

Metadata