Skip to content

Commit

Permalink
feat: Add functionality to create and delete catalogs, tables and sch…
Browse files Browse the repository at this point in the history
…emas to Unity catalog client (#20956)
  • Loading branch information
nameexhaustion authored Jan 29, 2025
1 parent 527b9cf commit a2eb8aa
Show file tree
Hide file tree
Showing 14 changed files with 1,529 additions and 277 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ sqlparser = "0.53"
stacker = "0.1"
streaming-iterator = "0.1.9"
strength_reduce = "0.2"
strum = "0.26"
strum_macros = "0.26"
thiserror = "2"
tokio = "1.26"
Expand Down
3 changes: 2 additions & 1 deletion crates/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ serde = { workspace = true, features = ["rc"], optional = true }
serde_json = { version = "1", optional = true }
simd-json = { workspace = true, optional = true }
simdutf8 = { workspace = true, optional = true }
strum = { workspace = true, optional = true }
strum_macros = { workspace = true, optional = true }
tokio = { workspace = true, features = ["fs", "net", "rt-multi-thread", "time", "sync"], optional = true }
tokio-util = { workspace = true, features = ["io", "io-util"], optional = true }
Expand All @@ -60,7 +61,7 @@ home = "0.5.4"
tempfile = "3"

[features]
catalog = ["cloud", "serde", "reqwest", "futures", "strum_macros"]
catalog = ["cloud", "serde", "reqwest", "futures", "strum", "strum_macros", "chrono"]
default = ["decompress"]
# support for arrows json parsing
json = [
Expand Down
Loading

0 comments on commit a2eb8aa

Please sign in to comment.