mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
Made the output of the newly added test cases from statistics.test
platform independent. Adjusted results of funcs_1.is_columns_mysql_embedded.
This commit is contained in:
parent
47fae7f08f
commit
cb0a5c84b6
3 changed files with 70 additions and 50 deletions
|
|
@ -471,14 +471,24 @@ SELECT UPPER(db_name), UPPER(table_name),
|
|||
use test;
|
||||
|
||||
DROP DATABASE world;
|
||||
SELECT * FROM mysql.table_stat;
|
||||
SELECT * FROM mysql.column_stat;
|
||||
SELECT * FROM mysql.index_stat;
|
||||
SELECT UPPER(db_name), UPPER(table_name), cardinality
|
||||
FROM mysql.table_stat;
|
||||
SELECT UPPER(db_name), UPPER(table_name),
|
||||
column_name, min_value, max_value, nulls_ratio, avg_length, avg_frequency
|
||||
FROM mysql.column_stat;
|
||||
SELECT UPPER(db_name), UPPER(table_name),
|
||||
index_name, prefix_arity, avg_frequency
|
||||
FROM mysql.index_stat;
|
||||
|
||||
DROP DATABASE world_innodb;
|
||||
SELECT * FROM mysql.table_stat;
|
||||
SELECT * FROM mysql.column_stat;
|
||||
SELECT * FROM mysql.index_stat;
|
||||
SELECT UPPER(db_name), UPPER(table_name), cardinality
|
||||
FROM mysql.table_stat;
|
||||
SELECT UPPER(db_name), UPPER(table_name),
|
||||
column_name, min_value, max_value, nulls_ratio, avg_length, avg_frequency
|
||||
FROM mysql.column_stat;
|
||||
SELECT UPPER(db_name), UPPER(table_name),
|
||||
index_name, prefix_arity, avg_frequency
|
||||
FROM mysql.index_stat;
|
||||
|
||||
DELETE FROM mysql.table_stat;
|
||||
DELETE FROM mysql.column_stat;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue