From: Marco van Wieringen Date: Wed, 21 Apr 2010 17:50:38 +0000 (+0200) Subject: Lets not use the mdb->transaction bool but create a private one named mdb->explicit_c... X-Git-Tag: Release-5.2.1~1429 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e81b0ccbc55c1d1f08c5e7f1f884f46d5087ff0a;p=bacula%2Fbacula 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. --- 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 */