We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c4ec6 commit c731e2aCopy full SHA for c731e2a
1 file changed
kernel/src/actions/mod.rs
@@ -748,8 +748,10 @@ pub(crate) struct Add {
748
749
/// Map containing metadata about this logical file.
750
/// Note: map values can be null.
751
- /// We don't use #[allow_null_container_values] here because it drops null values
752
- /// during materialization
+ /// We don't use `#[allow_null_container_values]` here because [`EngineMap::materialize`]
+ /// drops null values when that attribute is present.
753
+ ///
754
+ /// [`EngineMap::materialize`]: crate::engine_data::EngineMap::materialize
755
#[cfg_attr(test, serde(skip_serializing_if = "Option::is_none"))]
756
pub tags: Option<HashMap<String, Option<String>>>,
757
0 commit comments