]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/make_postgresql_tables.in
Tweak mutex order for SD
[bacula/bacula] / bacula / src / cats / make_postgresql_tables.in
index f53d6f49a948acee21ba3268d9de5bb74a943b31..91bf1efc4734eb765b277404eeaa21bd16b51867 100644 (file)
@@ -42,9 +42,9 @@ CREATE TABLE file
 
 CREATE INDEX file_jpfid_idx on file (jobid, pathid, filenameid);
 
--- If you are running PostgreSQL >= 8.2, you can remove this index
+-- If you need performances, you can remove this index
 -- the database engine is able to use the composite index
--- and it increase performances during insertion
+-- to find all records with a given JobId
 CREATE INDEX file_jobid_idx on file(jobid);
 
 --