diff options
author | unknown <antony@pcg5ppc.xiphis.org> | 2007-08-22 10:15:20 -0700 |
---|---|---|
committer | unknown <antony@pcg5ppc.xiphis.org> | 2007-08-22 10:15:20 -0700 |
commit | fc766e515e05624708dbfbf4983b3449097f2693 (patch) | |
tree | 1735262ac2d8d5bc1013e29b106b5c84e2b7faa3 | |
parent | 7c5aa8a69fe188ef54f74d882e4882fdfcaefb20 (diff) | |
download | mariadb-git-fc766e515e05624708dbfbf4983b3449097f2693.tar.gz |
Bug#30359
"Test federated_bug_25714 issues non-existing shell command"
Problem caused by missing '$' symbol in eval statement causing it
to always attempt to run test even if the test was not compiled.
mysql-test/include/have_bug25714.inc:
bug30359
missing '$' in eval statement
-rw-r--r-- | mysql-test/include/have_bug25714.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/have_bug25714.inc b/mysql-test/include/have_bug25714.inc index 0c995cd0d4c..0c09ae1a035 100644 --- a/mysql-test/include/have_bug25714.inc +++ b/mysql-test/include/have_bug25714.inc @@ -3,5 +3,5 @@ # --require r/have_bug25714.require disable_query_log; -eval select LENGTH("MYSQL_BUG25714") > 0 as "have_bug25714_exe"; +eval select LENGTH("$MYSQL_BUG25714") > 0 as "have_bug25714_exe"; enable_query_log; |