git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Another way of splitting c- and cpp- files
[stg.git]
/
projects
/
stargazer
/
plugins
/
store
/
postgresql
/
postgresql_store.h
diff --git
a/projects/stargazer/plugins/store/postgresql/postgresql_store.h
b/projects/stargazer/plugins/store/postgresql/postgresql_store.h
index d273803df0ec235536328fb95eae774e37b1a3e3..edba035927bac2e9dbdb7c0cd340898bea46ddf5 100644
(file)
--- a/
projects/stargazer/plugins/store/postgresql/postgresql_store.h
+++ b/
projects/stargazer/plugins/store/postgresql/postgresql_store.h
@@
-35,7
+35,7
@@
#include <vector>
#include <map>
#include <vector>
#include <map>
-#include "store.h"
+#include "st
g/st
ore.h"
// Minimal DB version is 5
// Recommended DB version is 6 (support FreeMb logging on disconnects)
// Minimal DB version is 5
// Recommended DB version is 6 (support FreeMb logging on disconnects)
@@
-121,6
+121,9
@@
public:
inline const string & GetStrError() const { return strError; };
inline const string & GetVersion() const { return versionString; };
private:
inline const string & GetStrError() const { return strError; };
inline const string & GetVersion() const { return versionString; };
private:
+ POSTGRESQL_STORE(const POSTGRESQL_STORE & rvalue);
+ POSTGRESQL_STORE & operator=(const POSTGRESQL_STORE & rvalue);
+
int StartTransaction() const;
int CommitTransaction() const;
int RollbackTransaction() const;
int StartTransaction() const;
int CommitTransaction() const;
int RollbackTransaction() const;
@@
-152,6
+155,7
@@
private:
MODULE_SETTINGS settings;
mutable pthread_mutex_t mutex;
mutable int version;
MODULE_SETTINGS settings;
mutable pthread_mutex_t mutex;
mutable int version;
+ int retries;
PGconn * connection;
};
PGconn * connection;
};