diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-07-13 16:02:08 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-07-13 16:02:08 +0200 |
commit | 0973bca1e480d9a60b57851af12efabcdb84ecc2 (patch) | |
tree | d785e2ddaf6ebe775f07cbcd3ce981f3aa62e658 | |
parent | 9035b9d3245692f266fc50fde6da144c6e069128 (diff) |
-be explicit about transaction mode
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index 5265660ea..57cae4e70 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -1286,7 +1286,7 @@ postgres_start (void *cls, PGresult *result; result = PQexec (session->conn, - "BEGIN"); + "START TRANSACTION ISOLATION LEVEL SERIALIZABLE"); if (PGRES_COMMAND_OK != PQresultStatus (result)) { |