Skip to content

Commit 8919162

Browse files
authored
refactor: Move memory catalog into core (#1480)
## Which issue does this PR close? - Closes #1472 ## What changes are included in this PR? Merge memory catalog into core. ## Are these changes tested? --------- Signed-off-by: Xuanwo <[email protected]>
1 parent 3fa9027 commit 8919162

File tree

17 files changed

+32
-443
lines changed

17 files changed

+32
-443
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ jobs:
4141
- "crates/iceberg"
4242
- "crates/catalog/glue"
4343
- "crates/catalog/hms"
44-
- "crates/catalog/memory"
4544
- "crates/catalog/rest"
4645
- "crates/catalog/sql"
4746
- "crates/integrations/datafusion"

Cargo.lock

Lines changed: 1 addition & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ futures = "0.3"
7575
hive_metastore = "0.1"
7676
http = "1.2"
7777
iceberg = { version = "0.5.1", path = "./crates/iceberg" }
78-
iceberg-catalog-memory = { version = "0.5.1", path = "./crates/catalog/memory" }
7978
iceberg-catalog-rest = { version = "0.5.1", path = "./crates/catalog/rest" }
8079
iceberg-datafusion = { version = "0.5.1", path = "./crates/integrations/datafusion" }
8180
indicatif = "0.17"

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ The Apache Iceberg Rust project is composed of the following components:
3333
| [iceberg-datafusion] | [![iceberg-datafusion image]][iceberg-datafusion link] | [![docs release]][iceberg-datafusion release docs] [![docs dev]][iceberg-datafusion dev docs] |
3434
| [iceberg-catalog-glue] | [![iceberg-catalog-glue image]][iceberg-catalog-glue link] | [![docs release]][iceberg-catalog-glue release docs] [![docs dev]][iceberg-catalog-glue dev docs] |
3535
| [iceberg-catalog-hms] | [![iceberg-catalog-hms image]][iceberg-catalog-hms link] | [![docs release]][iceberg-catalog-hms release docs] [![docs dev]][iceberg-catalog-hms dev docs] |
36-
| [iceberg-catalog-memory] | [![iceberg-catalog-memory image]][iceberg-catalog-memory link] | [![docs release]][iceberg-catalog-memory release docs] [![docs dev]][iceberg-catalog-memory dev docs] |
3736
| [iceberg-catalog-rest] | [![iceberg-catalog-rest image]][iceberg-catalog-rest link] | [![docs release]][iceberg-catalog-rest release docs] [![docs dev]][iceberg-catalog-rest dev docs] |
3837

3938
[docs release]: https://img.shields.io/badge/docs-release-blue
@@ -62,11 +61,6 @@ The Apache Iceberg Rust project is composed of the following components:
6261
[iceberg-catalog-hms release docs]: https://docs.rs/iceberg-catalog-hms
6362
[iceberg-catalog-hms dev docs]: https://rust.iceberg.apache.org/api/iceberg_catalog_hms/
6463

65-
[iceberg-catalog-memory]: crates/catalog/memory/README.md
66-
[iceberg-catalog-memory image]: https://img.shields.io/crates/v/iceberg-catalog-memory.svg
67-
[iceberg-catalog-memory link]: https://crates.io/crates/iceberg-catalog-memory
68-
[iceberg-catalog-memory release docs]: https://docs.rs/iceberg-catalog-memory
69-
[iceberg-catalog-memory dev docs]: https://rust.iceberg.apache.org/api/iceberg_catalog_memory/
7064

7165
[iceberg-catalog-rest]: crates/catalog/rest/README.md
7266
[iceberg-catalog-rest image]: https://img.shields.io/crates/v/iceberg-catalog-rest.svg

bindings/python/Cargo.lock

Lines changed: 9 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/catalog/memory/Cargo.toml

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)