diff options
author | Hakan Kuecuekyilmaz <hakan@askmonty.org> | 2009-12-09 17:43:00 +0100 |
---|---|---|
committer | Hakan Kuecuekyilmaz <hakan@askmonty.org> | 2009-12-09 17:43:00 +0100 |
commit | da65906bebb11e5a9f9ae7e86709a962b19d1fa4 (patch) | |
tree | 575b020c4b7fc731594a644abc41322e311b1143 /mysql-test/lib/v1/mysql-test-run.pl | |
parent | 06fb006a1de2ca55b72bc81107531947082b3bac (diff) | |
download | mariadb-git-da65906bebb11e5a9f9ae7e86709a962b19d1fa4.tar.gz |
Fix for
Bug #494255
Cannot run RQG due to errors in mysql-test-run.pl v1
Problem was missing variable declaration. Most likely due to a merge issue.
Diffstat (limited to 'mysql-test/lib/v1/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/lib/v1/mysql-test-run.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/lib/v1/mysql-test-run.pl b/mysql-test/lib/v1/mysql-test-run.pl index a691003abcb..3e9f7e78510 100755 --- a/mysql-test/lib/v1/mysql-test-run.pl +++ b/mysql-test/lib/v1/mysql-test-run.pl @@ -178,6 +178,7 @@ our @opt_extra_mysqltest_opt; our $opt_compress; our $opt_ssl; +our $opt_skip_ssl; our $opt_ssl_supported; our $opt_ps_protocol; our $opt_sp_protocol; |