From 86f5c91427216d37ba12aa34f49f57ef09973ae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Fri, 29 May 2020 19:11:37 +0200 Subject: [PATCH] fix(Core): solve issue with MariaDB (#3084) --- src/common/Database/QueryResult.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/Database/QueryResult.h b/src/common/Database/QueryResult.h index 94723c752..732d82f76 100644 --- a/src/common/Database/QueryResult.h +++ b/src/common/Database/QueryResult.h @@ -18,7 +18,7 @@ #endif #include -#if MYSQL_VERSION_ID >= 80001 +#if !defined(MARIADB_VERSION_ID) && MYSQL_VERSION_ID >= 80001 typedef bool my_bool; #endif