summaryrefslogtreecommitdiff
path: root/src/sql.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2026-04-18 01:00:42 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2026-04-18 01:00:42 +0100
commit7b148411b127ebf6fdefdb1b0decd2886cdfc17b (patch)
tree56385615fe86dbb5ab7ce4a90d696d97ddf21d7e /src/sql.cpp
parent1e551e618a63c869fde6a4b327566b38696a5f45 (diff)
parentfa6074eaf52be4254c17b74f20193aa96c940df8 (diff)
downloadwebstat-7b148411b127ebf6fdefdb1b0decd2886cdfc17b.tar.bz2
webstat-7b148411b127ebf6fdefdb1b0decd2886cdfc17b.tar.xz
webstat-7b148411b127ebf6fdefdb1b0decd2886cdfc17b.zip
Merge remote-tracking branch 'origin/no-crc32'HEADwebstat-0.4main
Diffstat (limited to 'src/sql.cpp')
-rw-r--r--src/sql.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sql.cpp b/src/sql.cpp
index da95f18..801a905 100644
--- a/src/sql.cpp
+++ b/src/sql.cpp
@@ -1,5 +1,6 @@
#include "sql.hpp"
#include <command.h>
+#include <dbpp-postgresql/pq-command.h>
namespace WebStat::SQL {
// ccache doesn't play nicely with #embed
@@ -22,7 +23,8 @@ namespace WebStat::SQL {
#embed "sql/hostUpsert.sql"
};
#define HASH_OPTS(VAR) \
- const DB::CommandOptionsPtr VAR##_OPTS = std::make_shared<DB::CommandOptions>(std::hash<std::string> {}(VAR))
+ const DB::CommandOptionsPtr VAR##_OPTS \
+ = std::make_shared<PQ::CommandOptions>(std::hash<std::string> {}(VAR), 35, false)
HASH_OPTS(ACCESS_LOG_INSERT);
HASH_OPTS(ACCESS_LOG_PURGE_OLD);
HASH_OPTS(ENTITY_INSERT);