Flatten rows containing same sub-table columns with distinct column names. (#2684)

This commit is contained in:
Andrés N. Robalino
2020-10-20 05:37:40 -05:00
committed by GitHub
parent b6d19cc9fa
commit 5725e55abb
3 changed files with 55 additions and 26 deletions

View File

@ -252,6 +252,11 @@ impl TaggedDictBuilder {
pub fn is_empty(&self) -> bool {
self.dict.is_empty()
}
/// Checks if given key exists
pub fn contains_key(&self, key: &str) -> bool {
self.dict.contains_key(key)
}
}
impl From<TaggedDictBuilder> for Value {