File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/query/service/tests/it/storages/fuse/operations Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ mod utils {
299
299
300
300
let blocks: std:: vec:: Vec < DataBlock > = stream. try_collect ( ) . await ?;
301
301
for block in blocks {
302
- let stats = gen_columns_statistics ( & block) ?;
302
+ let stats = gen_columns_statistics ( & block, None ) ?;
303
303
let block_meta = block_writer. write ( block, stats, None ) . await ?;
304
304
block_metas. push ( Arc :: new ( block_meta) ) ;
305
305
}
Original file line number Diff line number Diff line change @@ -24,5 +24,4 @@ mod purge_drop;
24
24
mod purge_truncate;
25
25
mod read_plan;
26
26
mod table_analyze;
27
- mod table_statistics;
28
27
mod truncate;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
use common_base:: base:: tokio;
16
- use common_catalog:: table_context:: TableContext ;
17
16
use common_exception:: Result ;
18
17
use common_sql:: Planner ;
18
+ use common_storages_fuse:: TableContext ;
19
19
use databend_query:: interpreters:: InterpreterFactory ;
20
20
use futures_util:: TryStreamExt ;
21
21
22
+ use crate :: storages:: fuse:: table_test_fixture:: TestFixture ;
22
23
use crate :: storages:: fuse:: utils:: do_purge_test;
23
24
use crate :: storages:: fuse:: utils:: TestTableOperation ;
24
25
You can’t perform that action at this time.
0 commit comments