1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +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 3d5e106310
commit e789dfd1bf

View File

@ -7,12 +7,14 @@ analyze table t1 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
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 PERSISTENT FOR ALL;
Table Op Msg_type Msg_text
analyze_table_db.t2 analyze status Engine-independent statistics collected
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 PERSISTENT FOR ALL;