You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
Fix analize_table test
This commit is contained in:
committed by
Leonid Fedorov
parent
9d4173e3a8
commit
c0307b6636
@ -3,23 +3,23 @@ CREATE DATABASE analyze_table_db;
|
||||
USE analyze_table_db;
|
||||
create table t1 (a int, b int, c int) engine=columnstore;
|
||||
insert into t1 values (1, 2, 3), (2, 2, 2), (2, 3, 4);
|
||||
analyze table t1;
|
||||
analyze table t1 PERSISTENT FOR ALL;
|
||||
Table Op Msg_type Msg_text
|
||||
analyze_table_db.t1 analyze status OK
|
||||
analyze_table_db.t1 analyze status Engine-independent statistics collected
|
||||
analyze_table_db.t1 analyze status OK
|
||||
create table t2 (a int, b double) engine=columnstore;
|
||||
insert into t2 values (2, 3), (3, 4);
|
||||
analyze table t2;
|
||||
analyze table t2 PERSISTENT FOR ALL;
|
||||
Table Op Msg_type Msg_text
|
||||
analyze_table_db.t2 analyze status OK
|
||||
analyze_table_db.t2 analyze status Engine-independent statistics collected
|
||||
analyze_table_db.t2 analyze status OK
|
||||
create table t3 (a varchar(25)) engine=columnstore;
|
||||
insert into t3 values ("a"), ("b");
|
||||
analyze table t3;
|
||||
analyze table t3 PERSISTENT FOR ALL;
|
||||
Table Op Msg_type Msg_text
|
||||
analyze_table_db.t3 analyze status Engine-independent statistics collected
|
||||
analyze_table_db.t3 analyze status OK
|
||||
analyze table t1, t2, t3;
|
||||
analyze table t1, t2, t3 PERSISTENT FOR ALL;
|
||||
Table Op Msg_type Msg_text
|
||||
analyze_table_db.t1 analyze status Engine-independent statistics collected
|
||||
analyze_table_db.t1 analyze status OK
|
||||
|
Reference in New Issue
Block a user