diff options
author | Mikael Ronstrom <mikael@dator8> | 2011-01-14 09:28:23 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@dator8> | 2011-01-14 09:28:23 +0100 |
commit | 4bc4a696bb9f0f8d453625304bc40c18187da11f (patch) | |
tree | 9ce62c775fefcef6b205815913ce7748cf5b376c /mysql-test/r/status.result | |
parent | fc12800c055bf2383ab7c7fb94e39a48d5860445 (diff) | |
download | mariadb-git-4bc4a696bb9f0f8d453625304bc40c18187da11f.tar.gz |
Updates tests to handle thread pool correctly
Diffstat (limited to 'mysql-test/r/status.result')
-rw-r--r-- | mysql-test/r/status.result | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/r/status.result b/mysql-test/r/status.result index c0cd0f7bc1a..ce3acba9b8a 100644 --- a/mysql-test/r/status.result +++ b/mysql-test/r/status.result @@ -238,11 +238,5 @@ SELECT 9; 9 DROP PROCEDURE p1; DROP FUNCTION f1; -DROP VIEW IF EXISTS v1; -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; -NAME -DROP VIEW v1; set @@global.concurrent_insert= @old_concurrent_insert; SET GLOBAL log_output = @old_log_output; |