From abf61fd91fa0b3fc30f4901eb5d8fc7c441b9d1d Mon Sep 17 00:00:00 2001 From: Sergey Vojtovich Date: Fri, 24 Nov 2017 14:57:44 +0400 Subject: [PATCH] Fixed build failure with PFS disabled mariabackup fails to builds with PFS disabled. The reason was missing include, which was included by PFS otherwise. --- extra/mariabackup/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/extra/mariabackup/common.h b/extra/mariabackup/common.h index 7b1dfd7a0db..4d73742af49 100644 --- a/extra/mariabackup/common.h +++ b/extra/mariabackup/common.h @@ -25,6 +25,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA #include #include #include +#include # define fil_is_user_tablespace_id(i) ((i) > srv_undo_tablespaces_open)