~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/math_functions/docs/index.rst

  • Committer: Daniel Nichter
  • Date: 2011-08-13 20:41:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2413.
  • Revision ID: daniel@percona.com-20110813204138-stxa89ca1t7cg1uy
Skeleton documentation for all plugins, more complete docu for first half of plugins.
Clean up plugin.ini titles and descriptions.
Reformat and reorganize root index.
Change Administrative to Administration and remove empty files (logging, etc.)
Add, fix, and tag documentation for functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Math Functions
 
2
==============
 
3
 
 
4
The ``math_functions`` plugin provides these :doc:`/functions/overview`:
 
5
 
 
6
* :ref:`abs-function`
 
7
 
 
8
* :ref:`acos-function`
 
9
 
 
10
* :ref:`asin-function`
 
11
 
 
12
* :ref:`atan-function`
 
13
 
 
14
* :ref:`atan2-function`
 
15
 
 
16
* :ref:`cos-function`
 
17
 
 
18
* :ref:`log-function`
 
19
 
 
20
* :ref:`log2-function`
 
21
 
 
22
* :ref:`log10-function`
 
23
 
 
24
* :ref:`sin-function`
 
25
 
 
26
* :ref:`pow-function`
 
27
 
 
28
* :ref:`power-function`
 
29
 
 
30
* :ref:`ln-function`
 
31
 
 
32
* :ref:`sqrt-function`
 
33
 
 
34
* :ref:`ceil-function`
 
35
 
 
36
* :ref:`ceiling-function`
 
37
 
 
38
* :ref:`exp-function`
 
39
 
 
40
* :ref:`floor-function`
 
41
 
 
42
* :ref:`ord-function`
 
43
 
 
44
.. _math_functions_loading:
 
45
 
 
46
Loading
 
47
-------
 
48
 
 
49
This plugin is loaded by default.  To stop the plugin from loading by
 
50
default, start :program:`drizzled` with::
 
51
 
 
52
   --plugin-remove=math_functions
 
53
 
 
54
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
55
 
 
56
.. _math_functions_authors:
 
57
 
 
58
Authors
 
59
-------
 
60
 
 
61
Brian Aker
 
62
 
 
63
.. _math_functions_version:
 
64
 
 
65
Version
 
66
-------
 
67
 
 
68
This documentation applies to **math_functions 1.0**.
 
69
 
 
70
To see which version of the plugin a Drizzle server is running, execute:
 
71
 
 
72
.. code-block:: mysql
 
73
 
 
74
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='math_functions'
 
75