added explicit lookup_fields to entity types

This commit is contained in:
2026-07-17 18:42:28 -04:00
parent e25890461d
commit ea5770aebe
9 changed files with 408 additions and 52 deletions

View File

@ -85,6 +85,10 @@ impl DatabaseExecutor for MockExecutor {
Ok("2026-03-10T00:00:00Z".to_string())
}
fn is_mock(&self) -> bool {
true
}
#[cfg(test)]
fn get_queries(&self) -> Vec<String> {
MOCK_STATE.with(|state| state.borrow().captured_queries.clone())