]> git.sur5r.net Git - bacula/bacula/commitdiff
tweak comment
authorEric Bollengier <eric@eb.homelinux.org>
Tue, 22 Sep 2009 21:20:41 +0000 (23:20 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Tue, 22 Sep 2009 21:20:41 +0000 (23:20 +0200)
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);
 
 --