From 428133dc5e7a310354f51ac78222b4ecaead9625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Tue, 26 May 2020 23:31:16 +0200 Subject: [PATCH] fix(Core/Mysql): my_bool type conflict (#3060) --- src/common/Database/QueryResult.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/Database/QueryResult.h b/src/common/Database/QueryResult.h index 1445ce3db..94723c752 100644 --- a/src/common/Database/QueryResult.h +++ b/src/common/Database/QueryResult.h @@ -18,6 +18,10 @@ #endif #include +#if MYSQL_VERSION_ID >= 80001 +typedef bool my_bool; +#endif + class ResultSet { public: