From 1ed98782e79e890e2dd4937781477f6371842bf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Mon, 4 May 2020 22:06:31 +0300 Subject: [PATCH] MDEV-22452: Fix cmake -DWITH_WSREP=OFF commit 5e7e7153b439ea1b12588f5830d66b3a0cf13414 accidentally broke the build without WSREP, by misplacing an #endif. --- storage/innobase/handler/ha_innodb.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 45682804f50..4f11c50da9c 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -4383,8 +4383,8 @@ innobase_commit_low( #ifdef WITH_WSREP if (is_wsrep) { thd_proc_info(thd, tmp); -#endif /* WITH_WSREP */ } +#endif /* WITH_WSREP */ } /*****************************************************************//**