[Commits] 62fad4e: MDEV-17096 Pushdown of simple derived tables to storage engines
revision-id: 62fad4e8e964786cd1c8d675f3c071a405a8d187 (mariadb-10.3.6-137-g62fad4e) parent(s): 953ca199fb62bcd190d2af4d6177f986564ec1ad author: Igor Babaev committer: Igor Babaev timestamp: 2019-02-13 08:55:38 -0800 message: MDEV-17096 Pushdown of simple derived tables to storage engines Fixing failures of federated test on 32-bit platforms --- storage/federatedx/ha_federatedx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/federatedx/ha_federatedx.cc b/storage/federatedx/ha_federatedx.cc index f55b0bc..b0a08a0 100644 --- a/storage/federatedx/ha_federatedx.cc +++ b/storage/federatedx/ha_federatedx.cc @@ -3684,7 +3684,7 @@ struct st_mysql_storage_engine federatedx_storage_engine= my_bool use_pushdown; static MYSQL_SYSVAR_BOOL(pushdown, use_pushdown, 0, "Use query fragments pushdown capabilities", NULL, NULL, FALSE); -static struct st_mysql_sys_var* sysvars[]= { MYSQL_SYSVAR(pushdown) }; +static struct st_mysql_sys_var* sysvars[]= { MYSQL_SYSVAR(pushdown), NULL }; #include "federatedx_pushdown.cc"
participants (1)
-
IgorBabaev