diff options
author | Marc Alff <marc.alff@oracle.com> | 2010-08-12 08:08:52 -0600 |
---|---|---|
committer | Marc Alff <marc.alff@oracle.com> | 2010-08-12 08:08:52 -0600 |
commit | 26f1efd981de6b298cda3c293e976ab55221c29a (patch) | |
tree | 49d38e34f081055bd6d27cfcaf23604d15a0f102 /mysql-test/suite/perfschema/t/no_threads.test | |
parent | ad264fa28700a0ed838ab762f861dc3b8b60eadd (diff) | |
download | mariadb-git-26f1efd981de6b298cda3c293e976ab55221c29a.tar.gz |
Bug#55416 Renaming of performance_schema tables for 5.5
Removed table SETUP_OBJECTS.
Renamed table PROCESSLIST to THREADS.
Renamed table EVENTS_WAITS_SUMMARY_BY_EVENT_NAME
to EVENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.
Adjusted Makefiles, code and tests accordingly.
Diffstat (limited to 'mysql-test/suite/perfschema/t/no_threads.test')
-rw-r--r-- | mysql-test/suite/perfschema/t/no_threads.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/perfschema/t/no_threads.test b/mysql-test/suite/perfschema/t/no_threads.test index 3d3f712e364..9254535bf1f 100644 --- a/mysql-test/suite/perfschema/t/no_threads.test +++ b/mysql-test/suite/perfschema/t/no_threads.test @@ -45,10 +45,10 @@ show variables like "performance_schema_max_thread%"; # Verification : in this main thread -select count(*) from performance_schema.PROCESSLIST +select count(*) from performance_schema.THREADS where name like "thread/sql/main"; -select count(*) from performance_schema.PROCESSLIST +select count(*) from performance_schema.THREADS where name like "thread/sql/OneConnection"; select event_name, operation, |