Skip to content

Commit 0b137b1

Browse files
fix: import issues after refactor (#1862)
1 parent 8677595 commit 0b137b1

File tree

4 files changed

+34
-1
lines changed

4 files changed

+34
-1
lines changed

rust/lance-table/src/lib.rs

+14
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
1+
// Copyright 2024 Lance Developers.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
115
pub mod format;
216
pub mod io;

rust/lance/src/io.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@
1717
pub mod commit;
1818
pub(crate) mod exec;
1919

20-
pub use lance_io::object_store::ObjectStore;
20+
pub use lance_io::{
21+
object_store::{ObjectStore, ObjectStoreParams, WrappingObjectStore},
22+
stream::RecordBatchStream,
23+
};

rust/lance/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ pub mod dataset;
8989
pub mod index;
9090
pub mod io;
9191
pub mod session;
92+
pub mod table;
9293
pub mod utils;
9394

9495
pub use dataset::Dataset;

rust/lance/src/table.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Copyright 2024 Lance Developers.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
pub use lance_table::format;

0 commit comments

Comments
 (0)