Skip to content

Commit 6664f61

Browse files
committed
add test
1 parent 404554b commit 6664f61

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tests/sqllogictests/suites/base/09_fuse_engine/09_0020_analyze.test

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ CREATE DATABASE db_09_0020
77
statement ok
88
USE db_09_0020
99

10+
statement ok
11+
create or replace table t_17129(`offset` varchar);
12+
13+
statement ok
14+
insert into t_17129 values('ttt');
15+
16+
statement ok
17+
analyze table t_17129;
18+
19+
query TI
20+
select column_name, distinct_count from fuse_statistic('db_09_0020','t_17129');
21+
----
22+
offset 1
23+
24+
statement ok
25+
drop table t_17129;
26+
1027
statement ok
1128
create table t(a uint64)
1229

0 commit comments

Comments
 (0)