diff --git a/crates/lib/src/filterable_value.rs b/crates/lib/src/filterable_value.rs index d0039823d09..fc4bbcdd639 100644 --- a/crates/lib/src/filterable_value.rs +++ b/crates/lib/src/filterable_value.rs @@ -60,6 +60,10 @@ macro_rules! impl_filterable_value { impl FilterableValue for $arg { type Column = $col; } + impl Private for Option<$arg> {} + impl FilterableValue for Option<$arg> { + type Column = Option<$col>; + } }; (@one $arg:ty: Copy) => { impl_filterable_value!(@one $arg => $arg);