diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-02-15 18:25:57 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-03-10 19:24:23 +0100 |
commit | 7af733a5a2cb7f79ffb5ff0129cad6db6f3cc359 (patch) | |
tree | f8f9cab2cd92e43b5fd20c9ac77f9487ece4e5a7 /mysql-test/suite/perfschema/t/information_schema.test | |
parent | 81cffda2e68ea5a155b74f24ae4345388afa963c (diff) | |
download | mariadb-git-7af733a5a2cb7f79ffb5ff0129cad6db6f3cc359.tar.gz |
perfschema compilation, test and misc fixes
Diffstat (limited to 'mysql-test/suite/perfschema/t/information_schema.test')
-rw-r--r-- | mysql-test/suite/perfschema/t/information_schema.test | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mysql-test/suite/perfschema/t/information_schema.test b/mysql-test/suite/perfschema/t/information_schema.test index 127c3eb1e3c..937a1b4f61b 100644 --- a/mysql-test/suite/perfschema/t/information_schema.test +++ b/mysql-test/suite/perfschema/t/information_schema.test @@ -31,13 +31,15 @@ select lower(TABLE_NAME), VERSION, ROW_FORMAT select lower(TABLE_NAME), AVG_ROW_LENGTH from information_schema.tables where TABLE_SCHEMA='performance_schema' and - lower(TABLE_NAME) not regexp '^variables|variables$|^status|session_status|global_status'; + lower(TABLE_NAME) not regexp '^variables|variables$|^status|session_status|global_status' + order by table_name; --replace_column 2 table_rows 3 avg_row_len select lower(TABLE_NAME), TABLE_ROWS, AVG_ROW_LENGTH from information_schema.tables where TABLE_SCHEMA='performance_schema' and - lower(TABLE_NAME) regexp '^variables|variables$|^status|session_status|global_status'; + lower(TABLE_NAME) regexp '^variables|variables$|^status|session_status|global_status' + order by table_name; select lower(TABLE_NAME), DATA_LENGTH, MAX_DATA_LENGTH from information_schema.tables @@ -59,10 +61,10 @@ select lower(TABLE_NAME), TABLE_COLLATION, CHECKSUM where TABLE_SCHEMA='performance_schema' order by table_name; -# TABLESPACE_NAME does not exist in 5.4 select lower(TABLE_NAME), CREATE_OPTIONS from information_schema.tables - where TABLE_SCHEMA='performance_schema'; + where TABLE_SCHEMA='performance_schema' + order by table_name; select lower(TABLE_NAME), TABLE_COMMENT from information_schema.tables |