From e789dfd1bf75abbe3effbf805434a6860974967c 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/columnstore/basic/r/analyze_table.result b/mysql-test/columnstore/basic/r/analyze_table.result index 08d8031e0..5630c2c2a 100644 --- a/mysql-test/columnstore/basic/r/analyze_table.result +++ b/mysql-test/columnstore/basic/r/analyze_table.result @@ -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;