MCPcopy Create free account
hub / github.com/apache/arrow-rs / string

Method string

parquet/src/schema/types.rs:783–785  ·  view source on GitHub ↗

Returns string representation of this column path. ```rust use parquet::schema::types::ColumnPath; let path = ColumnPath::new(vec!["a".to_string(), "b".to_string(), "c".to_string()]); assert_eq!(&path.string(), "a.b.c"); ```

(&self)

Source from the content-addressed store, hash-verified

781 /// assert_eq!(&path.string(), "a.b.c");
782 /// ```
783 pub fn string(&self) -> String {
784 self.parts.join(".")
785 }
786
787 /// Appends more components to end of column path.
788 /// ```rust

Callers 11

create_page_writerMethod · 0.80
check_bloom_filterFunction · 0.80
mainFunction · 0.80
test_sql.pyFile · 0.80
test_map_arrayFunction · 0.80
test_dictionary_pythonFunction · 0.80

Calls 1

joinMethod · 0.80

Tested by 3

test_map_arrayFunction · 0.64
test_dictionary_pythonFunction · 0.64