Change the per-sync isolation level default to match the global one: repeatable read...
authorGreg Sabino Mullane <greg@endpoint.com>
Mon, 9 Jun 2014 15:55:20 +0000 (11:55 -0400)
committerGreg Sabino Mullane <greg@endpoint.com>
Mon, 9 Jun 2014 15:55:20 +0000 (11:55 -0400)
bucardo.schema

index fdccedd859e4fa4e6975f710e8e73980eed498ae..a93fe2f4e7a8499ef7cbb86363ba7ac0f0df826e 100644 (file)
@@ -416,7 +416,7 @@ CREATE TABLE bucardo.sync (
   onetimecopy        SMALLINT    NOT NULL DEFAULT 0,
   lifetime           INTERVAL        NULL,                   -- force controller and kids to restart
   maxkicks           INTEGER     NOT NULL DEFAULT 0,         -- force controller and kids to restart
-  isolation_level    TEXT            NULL DEFAULT 'serializable',
+  isolation_level    TEXT            NULL DEFAULT 'repeatable read',
   cdate              TIMESTAMPTZ NOT NULL DEFAULT now()
 );
 COMMENT ON TABLE bucardo.sync IS $$Defines a single replication event from a herd to one or more target databases$$;