Navigation Menu

Skip to content

Commit

Permalink
mysql57 test: fix wrong condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 19, 2016
1 parent 0803d51 commit 388b4b1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mysql-test/mroonga/include/mroonga/have_mysql_57_or_later.inc
Expand Up @@ -17,8 +17,10 @@
--source ../../include/mroonga/check_version.inc
--source ../../include/mroonga/check_mariadb.inc

if ($mariadb) {
skip This test is for MySQL version 5.7.x or later;
}

if (!$version_57_or_later) {
if (!$mariadb) {
skip This test is for MySQL version 5.7.x or later;
}
skip This test is for MySQL version 5.7.x or later;
}

0 comments on commit 388b4b1

Please sign in to comment.