1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

enable sequence engine in the mcol-4786 test

This commit is contained in:
Timofey Turenko
2025-06-19 18:37:54 +03:00
committed by Leonid Fedorov
parent 2d400d919d
commit e9c6c6b5d3
4 changed files with 13 additions and 4 deletions

View File

@ -6,20 +6,26 @@ insert into t1 values (1, 2, 3), (2, 2, 2), (2, 3, 4);
analyze table t1;
Table Op Msg_type Msg_text
analyze_table_db.t1 analyze status OK
analyze_table_db.t1 analyze status Engine-independent statistics collected
create table t2 (a int, b double) engine=columnstore;
insert into t2 values (2, 3), (3, 4);
analyze table t2;
Table Op Msg_type Msg_text
analyze_table_db.t2 analyze status OK
analyze_table_db.t2 analyze status Engine-independent statistics collected
create table t3 (a varchar(25)) engine=columnstore;
insert into t3 values ("a"), ("b");
analyze table t3;
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;
Table Op Msg_type Msg_text
analyze_table_db.t1 analyze status Engine-independent statistics collected
analyze_table_db.t1 analyze status OK
analyze_table_db.t2 analyze status Engine-independent statistics collected
analyze_table_db.t2 analyze status OK
analyze_table_db.t3 analyze status Engine-independent statistics collected
analyze_table_db.t3 analyze status OK
DROP TABLE t1;
DROP TABLE t2;