From 264b0a0bebe4068f840adbaca429cbc2e5cd5993 Mon Sep 17 00:00:00 2001 From: Paul Van Eck Date: Tue, 6 Sep 2016 16:49:47 -0700 Subject: [PATCH] Make functional gate job work on Xenial With the functional gate job now being run on Xenial instead of Trusty, the mysql version being used is much newer. Here we enable the variable show_compatibility_56 that allows mysql system variables to be available through SHOW statements. This should fix the gate currently failing due to 'SHOW VARIABLES' statements erroring out. Change-Id: Ica368351a669458d3dd4085403f086335a4470c7 --- setup-mysql-tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/setup-mysql-tests.sh b/setup-mysql-tests.sh index 4d2b37d2..c1ac1326 100755 --- a/setup-mysql-tests.sh +++ b/setup-mysql-tests.sh @@ -25,6 +25,7 @@ mysqld --no-defaults --datadir=${MYSQL_DATA} --pid-file=${MYSQL_DATA}/mysql.pid # Wait for MySQL to start listening to connections wait_for_line "mysqld: ready for connections." ${MYSQL_DATA}/out export REFSTACK_TEST_MYSQL_URL="mysql+pymysql://root@localhost/test?unix_socket=${MYSQL_DATA}/mysql.socket&charset=utf8" +mysql --no-defaults -S ${MYSQL_DATA}/mysql.socket -e 'set @@global.show_compatibility_56=ON;' > /dev/null 2>&1 mysql --no-defaults -S ${MYSQL_DATA}/mysql.socket -e 'CREATE DATABASE test;' # Yield execution to venv command