Skip to content

Commit

Permalink
fix another comment
Browse files Browse the repository at this point in the history
  • Loading branch information
suremarc committed Dec 24, 2024
1 parent 0b4b65d commit 4ee098e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/materialized.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ use datafusion::{
use datafusion_expr::LogicalPlan;
use itertools::Itertools;

const META_COLUMN: &str = "__meta";
/// The identifier of the column that [`RowMetadataSource`](row_metadata::RowMetadataSource) implementations should store row metadata in.
pub const META_COLUMN: &str = "__meta";

static TABLE_TYPE_REGISTRY: LazyLock<TableTypeRegistry> = LazyLock::new(TableTypeRegistry::default);

/// A TableProvider whose data is backed by Hive-partitioned files in object storage.
/// A [`TableProvider`] whose data is backed by Hive-partitioned files in object storage.
pub trait ListingTableLike: TableProvider + 'static {
/// Object store URLs for this table
fn table_paths(&self) -> Vec<ListingTableUrl>;
Expand Down

0 comments on commit 4ee098e

Please sign in to comment.