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-7.0.0~1894 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=35bdcc6718d97c029c254c25e6fc189c3f996a3f;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 */