Skip to content

Commit

Permalink
Merge pull request #90 from JanKaul/move-catalogs
Browse files Browse the repository at this point in the history
move catalogs to separate directory
  • Loading branch information
JanKaul authored Dec 9, 2024
2 parents 1c27df5 + 145e85b commit eadb764
Show file tree
Hide file tree
Showing 50 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ members = [
"iceberg-rust",
"datafusion_iceberg",
"datafusion-iceberg-sql",
"iceberg-sql-catalog",
"iceberg-rest-catalog",
"iceberg-file-catalog",
"iceberg-glue-catalog",
"iceberg-s3tables-catalog",
"catalogs/iceberg-sql-catalog",
"catalogs/iceberg-rest-catalog",
"catalogs/iceberg-file-catalog",
"catalogs/iceberg-glue-catalog",
"catalogs/iceberg-s3tables-catalog",
]

resolver = "2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/JanKaul/iceberg-rust"
[dependencies]
async-trait.workspace = true
futures.workspace = true
iceberg-rust = { path = "../iceberg-rust", version = "0.5.8" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.5.8" }
object_store.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand All @@ -23,5 +23,5 @@ uuid = { version = "1.7.0", features = ["v4"] }
tokio = "1"
testcontainers-modules = { version = "0.8.0", features = ["localstack"] }
testcontainers = "0.20.0"
datafusion_iceberg = { path = "../datafusion_iceberg" , version = "0.5.8" }
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.5.8" }
datafusion.workspace = true
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ pub mod tests {
L_RECEIPTDATE DATE NOT NULL,
L_SHIPINSTRUCT VARCHAR NOT NULL,
L_SHIPMODE VARCHAR NOT NULL,
L_COMMENT VARCHAR NOT NULL ) STORED AS CSV LOCATION '../datafusion_iceberg/testdata/tpch/lineitem.csv' OPTIONS ('has_header' 'false');";
L_COMMENT VARCHAR NOT NULL ) STORED AS CSV LOCATION '../../datafusion_iceberg/testdata/tpch/lineitem.csv' OPTIONS ('has_header' 'false');";

let plan = ctx.state().create_logical_plan(sql).await.unwrap();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async-trait.workspace = true
aws-config = "1.5.9"
aws-sdk-glue = "1.68.0"
futures.workspace = true
iceberg-rust = { path = "../iceberg-rust", version = "0.5.8" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.5.8" }
object_store.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand All @@ -25,5 +25,5 @@ uuid = { version = "1.7.0", features = ["v4"] }
tokio = "1"
testcontainers-modules = { version = "0.8.0", features = ["localstack"] }
testcontainers = "0.20.0"
datafusion_iceberg = { path = "../datafusion_iceberg" , version = "0.5.8" }
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.5.8" }
datafusion.workspace = true
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ pub mod tests {
L_RECEIPTDATE DATE NOT NULL,
L_SHIPINSTRUCT VARCHAR NOT NULL,
L_SHIPMODE VARCHAR NOT NULL,
L_COMMENT VARCHAR NOT NULL ) STORED AS CSV LOCATION '../datafusion_iceberg/testdata/tpch/lineitem.csv' OPTIONS ('has_header' 'false');";
L_COMMENT VARCHAR NOT NULL ) STORED AS CSV LOCATION '../../datafusion_iceberg/testdata/tpch/lineitem.csv' OPTIONS ('has_header' 'false');";

let plan = ctx.state().create_logical_plan(sql).await.unwrap();

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ serde_json.workspace = true
url.workspace = true
uuid.workspace = true
reqwest-middleware = "0.2.0"
iceberg-rust = { path = "../iceberg-rust", version = "0.5.8" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.5.8" }
object_store.workspace = true
async-trait.workspace = true
futures.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "iceberg-s3tables-catalog"
version = "0.5.8"
edition = "2021"

description = "Glue catalog for the unofficial Iceberg table format implementation"
description = "S3Tables catalog for the unofficial Iceberg table format implementation"

license = "Apache-2.0"

Expand All @@ -14,7 +14,7 @@ async-trait.workspace = true
aws-config = "1.5.9"
aws-sdk-s3tables = "1.0.0"
futures.workspace = true
iceberg-rust = { path = "../iceberg-rust", version = "0.5.8" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.5.8" }
object_store.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand All @@ -25,5 +25,5 @@ uuid = { version = "1.7.0", features = ["v4"] }
tokio = "1"
testcontainers-modules = { version = "0.8.0", features = ["localstack"] }
testcontainers = "0.20.0"
datafusion_iceberg = { path = "../datafusion_iceberg" , version = "0.5.8" }
datafusion_iceberg = { path = "../../datafusion_iceberg" , version = "0.5.8" }
datafusion.workspace = true
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runtime-async-std = ["sqlx/runtime-async-std"]
[dependencies]
async-trait.workspace = true
futures.workspace = true
iceberg-rust = { path = "../iceberg-rust", version = "0.5.8" }
iceberg-rust = { path = "../../iceberg-rust", version = "0.5.8" }
object_store.workspace = true
serde_json.workspace = true
sqlx = { version = "0.8", features = ["tls-rustls", "any", "sqlite", "postgres", "mysql"], default-features = false }
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions datafusion_iceberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ regex = "1.11.0"

[dev-dependencies]
tokio = "1"
iceberg-sql-catalog = { path = "../iceberg-sql-catalog" }
iceberg-rest-catalog = { path = "../iceberg-rest-catalog" }
iceberg-sql-catalog = { path = "../catalogs/iceberg-sql-catalog" }
iceberg-rest-catalog = { path = "../catalogs/iceberg-rest-catalog" }
testcontainers-modules = { version = "0.8.0", features = ["localstack", "postgres"] }
testcontainers = "0.20.0"
tokio-stream = { version = "0.1.15", features = ["io-util"] }
Expand Down

0 comments on commit eadb764

Please sign in to comment.