From e9c6c6b5d34163a001b054a9d0dd7d01b996c826 Mon Sep 17 00:00:00 2001 From: Timofey Turenko Date: Thu, 19 Jun 2025 18:37:54 +0300 Subject: [PATCH] enable sequence engine in the mcol-4786 test --- mysql-test/columnstore/basic/r/analyze_table.result | 6 ++++++ ...886-use-of-partitioned-tables-in-crossengine-steps.opt | 2 ++ mysql-test/columnstore/basic/t/analyze_table.test | 8 ++++---- mysql-test/columnstore/bugfixes/mcol-4786.opt | 1 + 4 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 mysql-test/columnstore/bugfixes/mcol-4786.opt diff --git a/mysql-test/columnstore/basic/r/analyze_table.result b/mysql-test/columnstore/basic/r/analyze_table.result index 65fd380e0..0086a049d 100644 --- a/mysql-test/columnstore/basic/r/analyze_table.result +++ b/mysql-test/columnstore/basic/r/analyze_table.result @@ -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; diff --git a/mysql-test/columnstore/basic/t/MCOL-5886-use-of-partitioned-tables-in-crossengine-steps.opt b/mysql-test/columnstore/basic/t/MCOL-5886-use-of-partitioned-tables-in-crossengine-steps.opt index d9562aa81..02b69515b 100644 --- a/mysql-test/columnstore/basic/t/MCOL-5886-use-of-partitioned-tables-in-crossengine-steps.opt +++ b/mysql-test/columnstore/basic/t/MCOL-5886-use-of-partitioned-tables-in-crossengine-steps.opt @@ -1 +1,3 @@ --skip-partition=0 +--skip-sequence=0 + diff --git a/mysql-test/columnstore/basic/t/analyze_table.test b/mysql-test/columnstore/basic/t/analyze_table.test index 217b24920..a65ec3711 100644 --- a/mysql-test/columnstore/basic/t/analyze_table.test +++ b/mysql-test/columnstore/basic/t/analyze_table.test @@ -9,18 +9,18 @@ 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; 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; create table t3 (a varchar(25)) engine=columnstore; insert into t3 values ("a"), ("b"); -analyze table t3; +analyze table t3 PERSISTENT FOR ALL; -analyze table t1, t2, t3; +analyze table t1, t2, t3 PERSISTENT FOR ALL; DROP TABLE t1; DROP TABLE t2; diff --git a/mysql-test/columnstore/bugfixes/mcol-4786.opt b/mysql-test/columnstore/bugfixes/mcol-4786.opt new file mode 100644 index 000000000..bedbaf7de --- /dev/null +++ b/mysql-test/columnstore/bugfixes/mcol-4786.opt @@ -0,0 +1 @@ +--skip-sequence=0