From 38334d6c36578ec6da56461f4750bdee426cdfa1 Mon Sep 17 00:00:00 2001 From: jie Date: Wed, 23 Mar 2022 13:45:35 +0800 Subject: [PATCH] database.hpp: fix issue --- bserv/include/bserv/database.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bserv/include/bserv/database.hpp b/bserv/include/bserv/database.hpp index 02b8b4a..1abc9b3 100644 --- a/bserv/include/bserv/database.hpp +++ b/bserv/include/bserv/database.hpp @@ -14,6 +14,11 @@ #include +// [2022.3.23] fix issue: +// because the project structure of pqxx has been updated, +// including only pqxx is not enough +#include + namespace bserv { using raw_db_connection_type = pqxx::connection;