Skip to content

Commit

Permalink
feat(iceberg): support sql catalog interface (#7)
Browse files Browse the repository at this point in the history
* suppport remove all for file io

* resolve conflict

* reorder record batch

* fix scan

* fix filtered_entries

* fix ci ut

* change list item name back to list element

* fix

* feat(iceberg): support sql catalog interface

* typo

* chore(cargo): Downgrading sqlx from 0.8.0 to 0.7.3

* fix(iceberg): remove namespace_exists for sql catalogs

* fix(iceberg): fix set snapshot ref

* feat(iceberg): introduce disable_config_load for storage_s3

* chore(cargo): upgrade sqlx from 0.7.3 to 0.7.4

---------

Co-authored-by: Dylan Chen <[email protected]>
Co-authored-by: xxhZs <[email protected]>
Co-authored-by: Xinhao Xu <[email protected]>
  • Loading branch information
4 people authored Oct 8, 2024
1 parent f8b7bff commit 67d434d
Show file tree
Hide file tree
Showing 6 changed files with 940 additions and 23 deletions.
6 changes: 4 additions & 2 deletions crates/catalog/sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ keywords = ["iceberg", "sql", "catalog"]
[dependencies]
async-trait = { workspace = true }
iceberg = { workspace = true }
sqlx = { version = "0.8.1", features = ["any"], default-features = false }
serde_json = { workspace = true }
sqlx = { version = "0.7.4", features = ["any"], default-features = false }
typed-builder = { workspace = true }
uuid = { workspace = true, features = ["v4"] }

[dev-dependencies]
iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
itertools = { workspace = true }
regex = "1.10.5"
sqlx = { version = "0.8.0", features = [
sqlx = { version = "0.7.4", features = [
"tls-rustls",
"runtime-tokio",
"any",
Expand Down
Loading

0 comments on commit 67d434d

Please sign in to comment.