You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/02/04 12:24:39 UTC

svn commit: r1442080 - /subversion/trunk/subversion/libsvn_fs_fs/rep-cache-db.sql

Author: rhuijben
Date: Mon Feb  4 11:24:39 2013
New Revision: 1442080

URL: http://svn.apache.org/viewvc?rev=1442080&view=rev
Log:
* subversion/libsvn_fs_fs/rep-cache-db.sql
  (STMT_CREATE_SCHEMA): Don't enable auto vaccuum on a database that doesn't
    shrink to avoid unneeded bookkeeping, and to release the write lock as
    soon as possible.

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/rep-cache-db.sql

Modified: subversion/trunk/subversion/libsvn_fs_fs/rep-cache-db.sql
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/rep-cache-db.sql?rev=1442080&r1=1442079&r2=1442080&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/rep-cache-db.sql (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/rep-cache-db.sql Mon Feb  4 11:24:39 2013
@@ -22,8 +22,6 @@
  */
 
 -- STMT_CREATE_SCHEMA
-PRAGMA AUTO_VACUUM = 1;
-
 /* A table mapping representation hashes to locations in a rev file. */
 CREATE TABLE rep_cache (
   hash TEXT NOT NULL PRIMARY KEY,