Statistics for MySQL  1.1
 All Classes Files Functions Variables Typedefs Macros Pages
Classes | Functions
stddevw_pop.c File Reference

Weighted standard deviation of population. More...

#include "sqlstat.h"
Include dependency graph for stddevw_pop.c:

Go to the source code of this file.

Classes

struct  stddevw_pop_storage
 Storage for weighted standard deviation of population. More...
 

Functions

my_bool stddevw_pop_init (UDF_INIT *initid, UDF_ARGS *args, char *message)
 Called before first usage of function. More...
 
void stddevw_pop_reset (UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error)
 Reset function and add first group member Calls clear and add. More...
 
void stddevw_pop_clear (UDF_INIT *initid, char *is_null, char *error)
 Called at start of group. More...
 
void stddevw_pop_add (UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error)
 Add a member of the group. More...
 
double stddevw_pop (UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error)
 Retrieve weighted standard deviation of population. Called at end of group. More...
 
void stddevw_pop_deinit (UDF_INIT *initid)
 Called after last access to function. More...
 

Detailed Description

Weighted standard deviation of population.

CREATE AGGREGATE FUNCTION stddevw_pop RETURNS REAL SONAME 'libsqlstat.so';
SELECT stddevw_pop(x) FROM mytab;
DROP FUNCTION stddevw_pop;

Definition in file stddevw_pop.c.

Function Documentation

double stddevw_pop ( UDF_INIT *  initid,
UDF_ARGS *  args,
char *  is_null,
char *  error 
)

Retrieve weighted standard deviation of population. Called at end of group.

Parameters
initidfunction description
argsargument values
is_nullresult is NULL
errorerror message
Returns
weighted standard deviation of population

Definition at line 160 of file stddevw_pop.c.

void stddevw_pop_add ( UDF_INIT *  initid,
UDF_ARGS *  args,
char *  is_null,
char *  error 
)

Add a member of the group.

The counter and sums are updated

Parameters
initidfunction description
argsargument values
is_null
errorerror message

Definition at line 127 of file stddevw_pop.c.

Here is the caller graph for this function:

void stddevw_pop_clear ( UDF_INIT *  initid,
char *  is_null,
char *  error 
)

Called at start of group.

void stddevw_pop_clear(UDF_INIT *initid, char *is_null, char *error) The counter and sums are cleared.

Parameters
initidfunction description
is_null
errorerror message

Definition at line 109 of file stddevw_pop.c.

Here is the caller graph for this function:

void stddevw_pop_deinit ( UDF_INIT *  initid)

Called after last access to function.

Deallocate memory for counter and sums.

Parameters
initid

Definition at line 190 of file stddevw_pop.c.

my_bool stddevw_pop_init ( UDF_INIT *  initid,
UDF_ARGS *  args,
char *  message 
)

Called before first usage of function.

Check parameters.
Indicate type of return value.
Allocate memory for counter and sums.

Parameters
initidfunction description
argsparameters
messageerror message
Returns
success = 0

Definition at line 56 of file stddevw_pop.c.

void stddevw_pop_reset ( UDF_INIT *  initid,
UDF_ARGS *  args,
char *  is_null,
char *  error 
)

Reset function and add first group member Calls clear and add.

Parameters
initidfunction description
argsargument values
is_null
errorerror message
Deprecated:
Reset is only called by MySQL 4.0 and below. It is implemented for backwards compatibility.

Definition at line 95 of file stddevw_pop.c.

Here is the call graph for this function: