From da26d16dd1c07b34f46ba4b00527ebf76810d57d Mon Sep 17 00:00:00 2001 From: Monty Date: Sat, 9 Sep 2017 16:20:55 +0300 Subject: Add direct aggregates Spider patches 026 (MDEV-7723), 031 (MDEV-7727) and 058 (MDEV-12532) This allows the storage engine to internally compute sum and count operations. - Enhance sum items to be able to store the sum value directly. - return_record_by_parent() is enabled in spider as HANDLER_HAS_DIRECT_AGGREGATE is defined - Added spd_environ.h to spider. This is loaded first to ensure that all MariaDB specific defines that are used by include files are properly defined. - This code is tested by the existing spider tests direct_aggregate.test and direct_aggregate_part.test and also partition.test --- storage/spider/spd_db_mysql.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'storage/spider/spd_db_mysql.cc') diff --git a/storage/spider/spd_db_mysql.cc b/storage/spider/spd_db_mysql.cc index 4e2a41e9fa6..6dee59a10a5 100644 --- a/storage/spider/spd_db_mysql.cc +++ b/storage/spider/spd_db_mysql.cc @@ -16,6 +16,7 @@ #define MYSQL_SERVER 1 #include #include "mysql_version.h" +#include "spd_environ.h" #if MYSQL_VERSION_ID < 50500 #include "mysql_priv.h" #include -- cgit v1.2.1