Skip to content

Commit 90f39e8

Browse files
authored
refactor: Split schema module to multi file module (#989)
close #981 - `Schema` and `SchemaBuilder` are kept in `schema/mod.rs` - All other individual functions (along with the tests) are moved into a new file. Signed-off-by: xxchan <[email protected]>
1 parent 8fd343d commit 90f39e8

File tree

9 files changed

+2933
-2784
lines changed

9 files changed

+2933
-2784
lines changed

crates/iceberg/src/expr/predicate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ mod tests {
943943
assert_eq!(result, expected);
944944
}
945945

946-
fn table_schema_simple() -> SchemaRef {
946+
pub fn table_schema_simple() -> SchemaRef {
947947
Arc::new(
948948
Schema::builder()
949949
.with_schema_id(1)

0 commit comments

Comments
 (0)