mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Removed duplicate tests.
This commit is contained in:
@ -591,59 +591,6 @@ id select_type table type possible_keys key key_len ref rows Extra
|
|||||||
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
|
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
set use_stat_tables=@save_use_stat_tables;
|
||||||
#
|
#
|
||||||
# MDEV-16757: manual addition of min/max statistics for BLOB
|
|
||||||
#
|
|
||||||
SET use_stat_tables= PREFERABLY;
|
|
||||||
CREATE TABLE t1 (pk INT PRIMARY KEY, t TEXT);
|
|
||||||
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
||||||
ANALYZE TABLE t1;
|
|
||||||
Table Op Msg_type Msg_text
|
|
||||||
test.t1 analyze status Engine-independent statistics collected
|
|
||||||
test.t1 analyze Warning Engine-independent statistics are not collected for column 't'
|
|
||||||
test.t1 analyze status OK
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL
|
|
||||||
DELETE FROM mysql.column_stats
|
|
||||||
WHERE db_name='test' AND table_name='t1' AND column_name='t';
|
|
||||||
INSERT INTO mysql.column_stats VALUES
|
|
||||||
('test','t1','t','bar','foo', 0.0, 3.0, 1.0, 0, NULL, NULL);
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL
|
|
||||||
test t1 t bar foo 0.0000 3.0000 1.0000 0 NULL NULL
|
|
||||||
SELECT pk FROM t1;
|
|
||||||
pk
|
|
||||||
1
|
|
||||||
2
|
|
||||||
DROP TABLE t1;
|
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
|
||||||
#
|
|
||||||
# MDEV-16760: CREATE OR REPLACE TABLE after ANALYZE TABLE
|
|
||||||
#
|
|
||||||
SET use_stat_tables= PREFERABLY;
|
|
||||||
CREATE TABLE t1 (pk int PRIMARY KEY, c varchar(32));
|
|
||||||
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
||||||
ANALYZE TABLE t1;
|
|
||||||
Table Op Msg_type Msg_text
|
|
||||||
test.t1 analyze status Engine-independent statistics collected
|
|
||||||
test.t1 analyze status OK
|
|
||||||
SELECT * FROM t1;
|
|
||||||
pk c
|
|
||||||
1 foo
|
|
||||||
2 bar
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL
|
|
||||||
test t1 c bar foo 0.0000 3.0000 1.0000 0 NULL NULL
|
|
||||||
CREATE OR REPLACE TABLE t1 (pk int PRIMARY KEY, a char(7));
|
|
||||||
SELECT * FROM t1;
|
|
||||||
pk a
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
DROP TABLE t1;
|
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
|
||||||
#
|
|
||||||
# MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column
|
# MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column
|
||||||
#
|
#
|
||||||
SET use_stat_tables= PREFERABLY;
|
SET use_stat_tables= PREFERABLY;
|
||||||
|
@ -618,59 +618,6 @@ id select_type table type possible_keys key key_len ref rows Extra
|
|||||||
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
|
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
set use_stat_tables=@save_use_stat_tables;
|
||||||
#
|
#
|
||||||
# MDEV-16757: manual addition of min/max statistics for BLOB
|
|
||||||
#
|
|
||||||
SET use_stat_tables= PREFERABLY;
|
|
||||||
CREATE TABLE t1 (pk INT PRIMARY KEY, t TEXT);
|
|
||||||
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
||||||
ANALYZE TABLE t1;
|
|
||||||
Table Op Msg_type Msg_text
|
|
||||||
test.t1 analyze status Engine-independent statistics collected
|
|
||||||
test.t1 analyze Warning Engine-independent statistics are not collected for column 't'
|
|
||||||
test.t1 analyze status OK
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL
|
|
||||||
DELETE FROM mysql.column_stats
|
|
||||||
WHERE db_name='test' AND table_name='t1' AND column_name='t';
|
|
||||||
INSERT INTO mysql.column_stats VALUES
|
|
||||||
('test','t1','t','bar','foo', 0.0, 3.0, 1.0, 0, NULL, NULL);
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL
|
|
||||||
test t1 t bar foo 0.0000 3.0000 1.0000 0 NULL NULL
|
|
||||||
SELECT pk FROM t1;
|
|
||||||
pk
|
|
||||||
1
|
|
||||||
2
|
|
||||||
DROP TABLE t1;
|
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
|
||||||
#
|
|
||||||
# MDEV-16760: CREATE OR REPLACE TABLE after ANALYZE TABLE
|
|
||||||
#
|
|
||||||
SET use_stat_tables= PREFERABLY;
|
|
||||||
CREATE TABLE t1 (pk int PRIMARY KEY, c varchar(32));
|
|
||||||
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
||||||
ANALYZE TABLE t1;
|
|
||||||
Table Op Msg_type Msg_text
|
|
||||||
test.t1 analyze status Engine-independent statistics collected
|
|
||||||
test.t1 analyze status OK
|
|
||||||
SELECT * FROM t1;
|
|
||||||
pk c
|
|
||||||
1 foo
|
|
||||||
2 bar
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL
|
|
||||||
test t1 c bar foo 0.0000 3.0000 1.0000 0 NULL NULL
|
|
||||||
CREATE OR REPLACE TABLE t1 (pk int PRIMARY KEY, a char(7));
|
|
||||||
SELECT * FROM t1;
|
|
||||||
pk a
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram
|
|
||||||
DROP TABLE t1;
|
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
|
||||||
#
|
|
||||||
# MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column
|
# MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column
|
||||||
#
|
#
|
||||||
SET use_stat_tables= PREFERABLY;
|
SET use_stat_tables= PREFERABLY;
|
||||||
|
@ -369,51 +369,6 @@ SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user;
|
|||||||
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
|
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
set use_stat_tables=@save_use_stat_tables;
|
||||||
|
|
||||||
--echo #
|
|
||||||
--echo # MDEV-16757: manual addition of min/max statistics for BLOB
|
|
||||||
--echo #
|
|
||||||
|
|
||||||
SET use_stat_tables= PREFERABLY;
|
|
||||||
|
|
||||||
CREATE TABLE t1 (pk INT PRIMARY KEY, t TEXT);
|
|
||||||
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
||||||
ANALYZE TABLE t1;
|
|
||||||
--sorted_result
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
DELETE FROM mysql.column_stats
|
|
||||||
WHERE db_name='test' AND table_name='t1' AND column_name='t';
|
|
||||||
INSERT INTO mysql.column_stats VALUES
|
|
||||||
('test','t1','t','bar','foo', 0.0, 3.0, 1.0, 0, NULL, NULL);
|
|
||||||
--sorted_result
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
|
|
||||||
SELECT pk FROM t1;
|
|
||||||
|
|
||||||
DROP TABLE t1;
|
|
||||||
|
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
|
||||||
|
|
||||||
--echo #
|
|
||||||
--echo # MDEV-16760: CREATE OR REPLACE TABLE after ANALYZE TABLE
|
|
||||||
--echo #
|
|
||||||
|
|
||||||
SET use_stat_tables= PREFERABLY;
|
|
||||||
|
|
||||||
CREATE TABLE t1 (pk int PRIMARY KEY, c varchar(32));
|
|
||||||
INSERT INTO t1 VALUES (1,'foo'),(2,'bar');
|
|
||||||
ANALYZE TABLE t1;
|
|
||||||
SELECT * FROM t1;
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
|
|
||||||
CREATE OR REPLACE TABLE t1 (pk int PRIMARY KEY, a char(7));
|
|
||||||
SELECT * FROM t1;
|
|
||||||
SELECT * FROM mysql.column_stats;
|
|
||||||
|
|
||||||
DROP TABLE t1;
|
|
||||||
|
|
||||||
set use_stat_tables=@save_use_stat_tables;
|
|
||||||
|
|
||||||
|
|
||||||
--echo #
|
--echo #
|
||||||
--echo # MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column
|
--echo # MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column
|
||||||
--echo #
|
--echo #
|
||||||
|
Reference in New Issue
Block a user