forked from Percona-QA/package-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins_test_55.sh
executable file
·44 lines (41 loc) · 1.76 KB
/
plugins_test_55.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
set -e
WARNINGS_BEFORE=0
WARNINGS_AFTER=0
ERRORS_BEFORE=0
ERRORS_AFTER=0
ERROR_LOG=""
ERROR_LOG=$(mysql -N -s -e "show variables like 'log_error';" | grep -v "Warning:" | grep -o "\/.*$")
#if [ $(echo ${ERROR_LOG} | grep -c "log") -gt 0 ]; then
# ERROR_LOG=$(mysql -N -s -e "show variables like 'log_error';" | grep -v "Warning:" | grep -o "\/.*$")
# echo ${ERROR_LOG}
# else
# ERROR_LOG=$(mysql -N -s -e "show variables like 'log_error';" | grep -v "Warning:" | grep -o "\/.*$" | awk '{print "/var/lib/mysql"$1}')
# echo ${ERROR_LOG}
#fi
if [ ! -f ${ERROR_LOG} ]; then
echo "Error log was not found!"
exit 1
fi
WARNINGS_BEFORE=$(grep -c "\[Warning\]" ${ERROR_LOG} || true)
ERRORS_BEFORE=$(grep -c "\[ERROR\]" ${ERROR_LOG} || true)
mysql -e "CREATE FUNCTION fnv1a_64 RETURNS INTEGER SONAME 'libfnv1a_udf.so'"
mysql -e "CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'libfnv_udf.so'"
mysql -e "CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'"
mysql -e "INSTALL PLUGIN audit_log SONAME 'audit_log.so';"
mysql -e "INSTALL PLUGIN handlersocket SONAME 'handlersocket.so';"
mysql -e "INSTALL PLUGIN scalability_metrics SONAME 'scalability_metrics.so';"
mysql -e "SHOW PLUGINS;"
mysql -e "CREATE DATABASE world;"
sed -i '18,21 s/^/-- /' /package-testing/world.sql
pv /package-testing/world.sql | mysql -D world
ERRORS_AFTER=$(grep -c "\[ERROR\]" ${ERROR_LOG} || true)
if [ "${ERRORS_BEFORE}" != "${ERRORS_AFTER}" ]; then
echo "There's a difference in number of errors before installing plugins and after!"
exit 1
fi
WARNINGS_AFTER=$(grep -c "\[Warning\]" ${ERROR_LOG} || true)
if [ "${WARNINGS_BEFORE}" != "${WARNINGS_AFTER}" ]; then
echo "There's a difference in number of warnings before installing plugins and after!"
exit 1
fi