diff options
author | Mikael Ronstrom <mikael@dator8> | 2011-01-14 09:36:24 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@dator8> | 2011-01-14 09:36:24 +0100 |
commit | 35f5e0146188d416a7cfc60593f83e61f0e8e67e (patch) | |
tree | 164ebf43ca95aa8eac5d930e4b7044e8348a076c /mysql-test/t/status.test | |
parent | 4bc4a696bb9f0f8d453625304bc40c18187da11f (diff) | |
download | mariadb-git-35f5e0146188d416a7cfc60593f83e61f0e8e67e.tar.gz |
Fixed status test case
Diffstat (limited to 'mysql-test/t/status.test')
-rw-r--r-- | mysql-test/t/status.test | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mysql-test/t/status.test b/mysql-test/t/status.test index 9965875af55..26c7a89bf5c 100644 --- a/mysql-test/t/status.test +++ b/mysql-test/t/status.test @@ -354,21 +354,6 @@ DROP FUNCTION f1; # End of 5.1 tests -# -# Bug#17954 Threads_connected > Threads_created -# - ---disable_warnings -DROP VIEW IF EXISTS v1; ---enable_warnings - -CREATE VIEW v1 AS SELECT VARIABLE_NAME AS NAME, CONVERT(VARIABLE_VALUE, UNSIGNED) AS VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS; - -SELECT VALUE INTO @tc FROM v1 WHERE NAME = 'Threads_connected'; -SELECT NAME FROM v1 WHERE NAME = 'Threads_created' AND VALUE < @tc; - -DROP VIEW v1; - # Restore global concurrent_insert value. Keep in the end of the test file. --connection default set @@global.concurrent_insert= @old_concurrent_insert; |