1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-24 14:20:59 +03:00

MCOL-523 documentation part 2

This commit is contained in:
David Hall
2017-09-05 17:11:22 -05:00
parent bc9bdec1f4
commit bb21c79e87
13 changed files with 284 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
.. _cmakelists:
CMakeLists.txt
==============
For Columnstore 1.1, you compile your function by including it in the CMakeLists.txt file for the udfsdk.
You need only add the new .cpp files to the udfsdk_LIB_SRCS target list::
set(udfsdk_LIB_SRCS udfsdk.cpp mcsv1_udaf.cpp allnull.cpp ssq.cpp median.cpp avg_mode.cpp)
If you create a new file for your MariaDB Aggregate function, add it to the target list for udf_mysql_LIB_SRCS::
set(udf_mysql_LIB_SRCS udfmysql.cpp)