aboutsummaryrefslogtreecommitdiff
path: root/databases/mysql-udf-sys/pkg-message
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mysql-udf-sys/pkg-message')
-rw-r--r--databases/mysql-udf-sys/pkg-message24
1 files changed, 0 insertions, 24 deletions
diff --git a/databases/mysql-udf-sys/pkg-message b/databases/mysql-udf-sys/pkg-message
deleted file mode 100644
index e0cbb3788f02..000000000000
--- a/databases/mysql-udf-sys/pkg-message
+++ /dev/null
@@ -1,24 +0,0 @@
-
-To add the custom functions to your MySQL server use the following SQL:
-(These function can be dangerous, you should install only the functions
-you need):
-
-USE mysql;
-
-CREATE FUNCTION
- lib_mysqludf_sys_info RETURNS string SONAME 'lib_mysqludf_sys.so';
-CREATE FUNCTION sys_get RETURNS string SONAME 'lib_mysqludf_sys.so';
-CREATE FUNCTION sys_set RETURNS int SONAME 'lib_mysqludf_sys.so';
-CREATE FUNCTION sys_exec RETURNS int SONAME 'lib_mysqludf_sys.so';
-CREATE FUNCTION sys_eval RETURNS string SONAME 'lib_mysqludf_sys.so';
-
-To deinstall:
-
-DROP FUNCTION IF EXISTS lib_mysqludf_sys_info;
-DROP FUNCTION IF EXISTS sys_get;
-DROP FUNCTION IF EXISTS sys_set;
-DROP FUNCTION IF EXISTS sys_exec;
-DROP FUNCTION IF EXISTS sys_eval;
-
-For function descriptions, see the following webpage:
-http://www.mysqludf.org/lib_mysqludf_sys