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

@@ -1,14 +0,0 @@
UDAFMap
-------
UDAFMap holds a mapping from the function name to its implementation. The engine uses the map when a UDA(n)F is called by a SQL statement.
You must enter your function into the map. This means you must:
* #include your header file
* add an entry into UDAFMap::getMap().
The map is fully populated the first time it is called, i.e., the first time any UDA(n)F is called by a SQL statement.
The need for you to manually enter your function into this map may be alleviated by future enhancements.