| 24 | /// Cached parameter value |
| 25 | #[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)] |
| 26 | pub enum CacheParameter { |
| 27 | String(String), |
| 28 | Integer(i64), |
| 29 | Float(u64), // Store as bits for exact comparison |
| 30 | Boolean(bool), |
| 31 | Null, |
| 32 | } |
| 33 | |
| 34 | impl CacheKey for QueryCacheKey { |
| 35 | fn cache_key(&self) -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected