From 3ab6b8f56fb765247693a23775713973b8a5e7ed Mon Sep 17 00:00:00 2001 From: unknown <jimw@mysql.com> Date: Tue, 2 Aug 2005 16:50:10 -0700 Subject: [PATCH] Fix test to avoid spurious failure message. (Bug #11233) mysql-test/t/information_schema.test: Stub out column in results that we don't care about, and may vary mysql-test/r/information_schema.result: Update results --- mysql-test/r/information_schema.result | 2 +- mysql-test/t/information_schema.test | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mysql-test/r/information_schema.result b/mysql-test/r/information_schema.result index 1781492af8b..e073b1facd4 100644 --- a/mysql-test/r/information_schema.result +++ b/mysql-test/r/information_schema.result @@ -689,7 +689,7 @@ show variables where variable_name like "skip_show_databas"; Variable_name Value show global status like "Threads_running"; Variable_name Value -Threads_running 1 +Threads_running # create table t1(f1 int); create table t2(f2 int); create view v1 as select * from t1, t2; diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test index cfbd86a018f..cf089f0089e 100644 --- a/mysql-test/t/information_schema.test +++ b/mysql-test/t/information_schema.test @@ -411,6 +411,8 @@ show variables where variable_name like "skip_show_databas"; # # Bug #7981:SHOW GLOBAL STATUS crashes server # +# We don't actually care about the value, just that it doesn't crash. +--replace_column 2 # show global status like "Threads_running"; # -- 2.30.9