diff options
author | Michael Widenius <monty@askmonty.org> | 2010-02-12 16:21:13 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-02-12 16:21:13 +0200 |
commit | 75f336328c76ffe4fc31a8073658d58f3026b1ed (patch) | |
tree | 734d90b751d4a088631b42d333ca7d3563e04903 /mysql-test/suite/maria/t/maria3.test | |
parent | 95db16d4675413ebe25e039607aa02a0d73f69df (diff) | |
download | mariadb-git-75f336328c76ffe4fc31a8073658d58f3026b1ed.tar.gz |
Fix for LPBUG#516148 Test maria.maria3 fails when --without-maria-tmp-tables is set
mysql-test/suite/maria/r/maria3.result:
Updated test results
mysql-test/suite/maria/t/maria3.test:
Don't show maria_used_for_temp_tables, as it's value is depending on configure options
Diffstat (limited to 'mysql-test/suite/maria/t/maria3.test')
-rw-r--r-- | mysql-test/suite/maria/t/maria3.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/maria/t/maria3.test b/mysql-test/suite/maria/t/maria3.test index a476c75aa44..45765b3b868 100644 --- a/mysql-test/suite/maria/t/maria3.test +++ b/mysql-test/suite/maria/t/maria3.test @@ -259,7 +259,7 @@ drop table t1; # Fix if we are using safemalloc --replace_result 8388572 8388600 -show variables like 'maria%'; +select lower(variable_name) as Variable_name, Variable_value as Value from information_schema.session_variables where variable_name like "maria%" and variable_name not like "maria_used_for_temp_tables" order by 1; --replace_column 2 # show status like 'maria%'; |