From f59d2a0107c3f3efa9cf46aa177b79e7cfe71db8 Mon Sep 17 00:00:00 2001 From: Winston-leon <1871056255@qq.com> Date: Thu, 28 Apr 2022 14:12:48 +0800 Subject: [PATCH] * Provide threadpool plugin for MySQL 8.0.25 - Fix "FALSE" incompatibility problem --- plugin/thread_pool/threadpool_unix.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/thread_pool/threadpool_unix.cc b/plugin/thread_pool/threadpool_unix.cc index 9fca02074..b0a2a61a7 100644 --- a/plugin/thread_pool/threadpool_unix.cc +++ b/plugin/thread_pool/threadpool_unix.cc @@ -155,7 +155,7 @@ int vio_cancel(Vio *vio, int how) int r= 0; DBUG_ENTER("vio_cancel"); - if (vio->inactive == FALSE) + if (vio->inactive == false) { assert(vio->type == VIO_TYPE_TCPIP || vio->type == VIO_TYPE_SOCKET || -- Gitee