Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ impl Interpreter for ReclusterTableInterpreter {
}
}

let elapsed_time = SystemTime::now().duration_since(start).unwrap();
let elapsed_time = SystemTime::now().duration_since(start).unwrap_or_default();
times += 1;
// Status.
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,11 @@ merge into t_17800 using t1_17800 on t_17800.a=t1_17800.a when matched then upda
----
17 33

query II
select segment_count, row_count from fuse_snapshot('db','t_17800') limit 4;
query B
select abs(stats_row_count - actual_row_count) * 10 < actual_row_count from system.statistics where database = 'db' and table = 't_17800';
----
1 117
1 117
2 117
1 100
1
1

statement ok
CREATE OR REPLACE TABLE t1(id string, raw_data variant, add_time timestamp, action string);
Expand Down