Skip to content

Commit da86848

Browse files
authored
fix(stats): non-existent change events should be changed as no-change (#763)
1 parent 774054f commit da86848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/execution/source_indexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ impl SourceIndexingContext {
154154
}
155155
hash_map::Entry::Vacant(entry) => {
156156
if source_version.kind == row_indexer::SourceVersionKind::NonExistence {
157-
update_stats.num_deletions.inc(1);
157+
update_stats.num_no_change.inc(1);
158158
return anyhow::Ok(());
159159
}
160160
let new_entry = SourceRowIndexingState {

0 commit comments

Comments
 (0)