We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404554b commit 6664f61Copy full SHA for 6664f61
tests/sqllogictests/suites/base/09_fuse_engine/09_0020_analyze.test
@@ -7,6 +7,23 @@ CREATE DATABASE db_09_0020
7
statement ok
8
USE db_09_0020
9
10
+statement ok
11
+create or replace table t_17129(`offset` varchar);
12
+
13
14
+insert into t_17129 values('ttt');
15
16
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
25
+drop table t_17129;
26
27
28
create table t(a uint64)
29
0 commit comments