File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -307,9 +307,15 @@ select t.number from numbers(10000) as t inner join numbers(1000) as t1 on t.num
307
307
statement ok
308
308
drop table t
309
309
310
+ statement ok
311
+ drop table if exists t3
312
+
310
313
statement ok
311
314
CREATE TABLE t3(c0 BIGINT NULL, c1 DOUBLE NULL)
312
315
316
+ statement ok
317
+ drop table if exists t4
318
+
313
319
statement ok
314
320
CREATE TABLE t4(c0 FLOAT NULL)
315
321
Original file line number Diff line number Diff line change @@ -20,16 +20,24 @@ pub struct SqlLogicTestArgs {
20
20
// Set specific dir to run
21
21
#[ arg(
22
22
short = 'd' ,
23
- long = "dir " ,
23
+ long = "run_dir " ,
24
24
help = "Run sqllogictests in specific directory, the arg is optional"
25
25
) ]
26
26
pub dir : Option < String > ,
27
27
28
28
// Set specific test file to run
29
29
#[ arg(
30
30
short = 'f' ,
31
- long = "file " ,
31
+ long = "run_file " ,
32
32
help = "Run sqllogictests in specific test file, the arg is optional"
33
33
) ]
34
34
pub file : Option < String > ,
35
+
36
+ // Set specific dir to skip
37
+ #[ arg(
38
+ short = 's' ,
39
+ long = "skip_dir" ,
40
+ help = "Skip sqllogictests in specific directory, the arg is optional"
41
+ ) ]
42
+ pub skipped_dir : Option < String > ,
35
43
}
Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ async fn run_suits(suits: ReadDir, databend: Databend) -> Result<()> {
163
163
. unwrap ( )
164
164
. to_str ( )
165
165
. unwrap ( ) ;
166
- dbg ! ( file_name) ;
167
166
if let Some ( ref specific_file) = args. file {
168
167
if file_name != specific_file {
169
168
continue ;
@@ -185,6 +184,14 @@ fn get_files(suit: PathBuf) -> Result<Vec<walkdir::Result<DirEntry>>> {
185
184
. max_depth ( 100 )
186
185
. sort_by ( |a, b| a. file_name ( ) . cmp ( b. file_name ( ) ) )
187
186
. into_iter ( )
187
+ . filter_entry ( |e| {
188
+ if let Some ( skipped_dir) = & args. skipped_dir {
189
+ if e. file_name ( ) . to_str ( ) . unwrap ( ) == skipped_dir {
190
+ return false ;
191
+ }
192
+ }
193
+ true
194
+ } )
188
195
. filter ( |e| {
189
196
if args. dir . is_none ( ) {
190
197
return true ;
You can’t perform that action at this time.
0 commit comments