From 0d33efdc5fc57a98298d7af62b362cf4ac1da29a Mon Sep 17 00:00:00 2001 From: David Hall Date: Fri, 12 Oct 2018 13:00:34 -0500 Subject: [PATCH] MCOL-1759 add the functions to install script --- dbcon/mysql/install_calpont_mysql.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dbcon/mysql/install_calpont_mysql.sh b/dbcon/mysql/install_calpont_mysql.sh index a5d7150a2..589894c01 100755 --- a/dbcon/mysql/install_calpont_mysql.sh +++ b/dbcon/mysql/install_calpont_mysql.sh @@ -90,6 +90,12 @@ CREATE AGGREGATE FUNCTION regr_count RETURNS INTEGER soname 'libregr_mysql.so'; CREATE AGGREGATE FUNCTION regr_slope RETURNS REAL soname 'libregr_mysql.so'; CREATE AGGREGATE FUNCTION regr_intercept RETURNS REAL soname 'libregr_mysql.so'; CREATE AGGREGATE FUNCTION regr_r2 RETURNS REAL soname 'libregr_mysql.so'; +CREATE AGGREGATE FUNCTION corr RETURNS REAL soname 'libregr_mysql.so'; +CREATE AGGREGATE FUNCTION regr_sxx RETURNS REAL soname 'libregr_mysql.so'; +CREATE AGGREGATE FUNCTION regr_syy RETURNS REAL soname 'libregr_mysql.so'; +CREATE AGGREGATE FUNCTION regr_sxy RETURNS REAL soname 'libregr_mysql.so'; +CREATE AGGREGATE FUNCTION covar_pop RETURNS REAL soname 'libregr_mysql.so'; +CREATE AGGREGATE FUNCTION covar_samp RETURNS REAL soname 'libregr_mysql.so'; CREATE AGGREGATE FUNCTION distinct_count RETURNS INTEGER soname 'libudf_mysql.so';