From e81b0ccbc55c1d1f08c5e7f1f884f46d5087ff0a Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Wed, 21 Apr 2010 19:50:38 +0200 Subject: [PATCH] Lets not use the mdb->transaction bool but create a private one named mdb->explicit_commit as mdb->transaction is used by the bacula core and we need a private setting for Ingres. --- bacula/src/cats/cats.h | 1 + 1 file changed, 1 insertion(+) diff --git a/bacula/src/cats/cats.h b/bacula/src/cats/cats.h index 01176ef9df..a340b79400 100644 --- a/bacula/src/cats/cats.h +++ b/bacula/src/cats/cats.h @@ -581,6 +581,7 @@ struct B_DB { uint32_t cached_path_id; bool allow_transactions; /* transactions allowed */ bool transaction; /* transaction started */ + bool explicit_commit; /* do an explicit commit after each query */ int changes; /* changes made to db */ POOLMEM *fname; /* Filename only */ POOLMEM *path; /* Path only */ -- 2.39.5