Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghua committed Dec 26, 2024
1 parent eda7b8d commit f18fbc9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rust/lance/src/catalog.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Lance Authors

pub(crate) mod dataset_identifier;
pub(crate) mod catalog;
pub(crate) mod dataset_identifier;
pub(crate) mod namespace;

pub use dataset_identifier::DatasetIdentifier;
pub use catalog::Catalog;
pub use dataset_identifier::DatasetIdentifier;
pub use namespace::Namespace;
2 changes: 1 addition & 1 deletion rust/lance/src/catalog/catalog.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Lance Authors

use crate::dataset::Dataset;
use crate::catalog::dataset_identifier::DatasetIdentifier;
use crate::catalog::namespace::Namespace;
use crate::dataset::Dataset;
use std::collections::HashMap;

pub trait Catalog {
Expand Down
2 changes: 1 addition & 1 deletion rust/lance/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ pub use lance_core::{datatypes, error};
pub use lance_core::{Error, Result};

pub mod arrow;
pub mod catalog;
pub mod datafusion;
pub mod dataset;
pub mod index;
pub mod io;
pub mod session;
pub mod table;
pub mod utils;
pub mod catalog;

pub use dataset::Dataset;
use lance_index::vector::DIST_COL;
Expand Down

0 comments on commit f18fbc9

Please sign in to comment.