We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653acf3 commit c4d7ffeCopy full SHA for c4d7ffe
bin/install-package-tests
@@ -64,12 +64,16 @@ echo "Detecting database version..."
64
65
TYPE="MySQL"
66
CLIENT_VERSION=$(mysql --version 2>/dev/null)
67
+
68
case "${CLIENT_VERSION}" in
69
*"MariaDB"*)
70
TYPE="MariaDB"
71
;;
72
esac
73
74
+echo "DEBUG: CLIENT_VERSION is: '${CLIENT_VERSION}'"
75
+echo "DEBUG: TYPE is: '${TYPE}'"
76
77
if [ "${TYPE}" == "MySQL" ]; then
78
SERVER_VERSION=$(mysql -e "SELECT VERSION()" --skip-column-names ${HOST_STRING} -u"${USER}" "${PASSWORD_STRING}")
79
else
0 commit comments