You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
explain syntax select a, sum(b) as sum from t1 where a in (1, 2) and b > 0 and b < 100 group by a order by a;
84
71
@@ -95,7 +82,6 @@ WHERE
95
82
GROUP BY a
96
83
ORDER BY a
97
84
98
-
onlyif mysql
99
85
statement query T
100
86
explain syntax select * from t1 inner join t2 on t1.a = t2.a and t1.b = t2.b and t1.a > 2;
101
87
@@ -107,7 +93,6 @@ FROM
107
93
AND t1.b = t2.b
108
94
AND t1.a > 2
109
95
110
-
onlyif mysql
111
96
statement query T
112
97
explain syntax delete from t1 where a > 100 and b > 1 and b < 10;
113
98
@@ -119,7 +104,6 @@ WHERE
119
104
AND b > 1
120
105
AND b < 10
121
106
122
-
onlyif mysql
123
107
statement query T
124
108
explain syntax copy into t1 from 's3://mybucket/data.csv' file_format = ( type = 'CSV' field_delimiter = ',' record_delimiter = '\n' skip_header = 1) size_limit=10;
125
109
@@ -135,7 +119,6 @@ FILE_FORMAT = (
135
119
)
136
120
SIZE_LIMIT = 10
137
121
138
-
onlyif mysql
139
122
statement query T
140
123
explain syntax copy into 's3://mybucket/data.csv' from t1 file_format = ( type = 'CSV' field_delimiter = ',' record_delimiter = '\n' skip_header = 1) size_limit=10;
141
124
@@ -151,7 +134,6 @@ FILE_FORMAT = (
151
134
)
152
135
SIZE_LIMIT = 10
153
136
154
-
onlyif mysql
155
137
statement query T
156
138
explain syntax create table t3(a int64, b uint64, c float64, d string, e array(int32), f tuple(f1 bool, f2 string)) engine=fuse cluster by (a, b, c) comment='test' compression='LZ4';
157
139
@@ -172,7 +154,6 @@ CLUSTER BY (
172
154
comment = 'test',
173
155
compression = 'LZ4'
174
156
175
-
onlyif mysql
176
157
statement query T
177
158
explain syntax create view v as select number % 3 as a from numbers(100) where number > 10;
explain select a from (select number as a, number b, sum(number) as c, number as d, number as e from numbers(1) group by a, b, d, e) where b > 1 order by d limit 1;
explain select * from (select t1.a from (select number + 1 as a, number + 1 as b, number + 1 as c, number + 1 as d from numbers(1)) as t1, (select number + 1 as a, number + 1 as b, number + 1 as c from numbers(1)) as t2 where t1.b = t2.b and t1.c = 1);
explain select t1.a from (select number + 1 as a, number + 1 as b from numbers(1)) as t1 where t1.a = (select count(*) from (select t2.a, t3.a from (select number + 1 as a, number + 1 as b, number + 1 as c, number + 1 as d from numbers(1)) as t2, (select number + 1 as a, number + 1 as b, number + 1 as c from numbers(1)) as t3 where t2.b = t3.b and t2.c = 1));
0 commit comments