fix: Update schema/src/lib.rs

Co-authored-by: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com>
pull/24376/head
Andrew Lamb 2023-01-06 06:13:04 -05:00 committed by GitHub
parent ba844ddf03
commit 544f5c5bff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,9 @@ pub type Result<T, E = Error> = std::result::Result<T, E>;
/// [`DataType`]: arrow::datatypes::DataType
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Schema {
/// Refcount to underlying Arrow Schema All the actual data lives on the metadata structure in
/// Reference-counted pointer to underlying Arrow Schema
///
/// All the actual data lives on the metadata structure in
/// `ArrowSchemaRef` and this structure knows how to access that
/// metadata
inner: ArrowSchemaRef,