Skip to content

Commit f278e01

Browse files
zz_yclaude
andcommitted
fix: declare global and per_key as modules so common.rs items are reachable
Without pub mod global and pub mod per_key in mod.rs, the compiler sees all types in common.rs as dead code and fails under -D warnings. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent fd93329 commit f278e01

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • asap-query-engine/src/stores/simple_map_store

asap-query-engine/src/stores/simple_map_store/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
mod common;
2+
pub mod global;
23
pub mod legacy;
4+
pub mod per_key;
35

46
use crate::data_model::{
57
AggregateCore, CleanupPolicy, LockStrategy, PrecomputedOutput, StreamingConfig,

0 commit comments

Comments
 (0)