Skip to content

Commit a2eb8aa

Browse files
feat: Add functionality to create and delete catalogs, tables and schemas to Unity catalog client (#20956)
1 parent 527b9cf commit a2eb8aa

File tree

14 files changed

+1529
-277
lines changed

14 files changed

+1529
-277
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ sqlparser = "0.53"
7878
stacker = "0.1"
7979
streaming-iterator = "0.1.9"
8080
strength_reduce = "0.2"
81+
strum = "0.26"
8182
strum_macros = "0.26"
8283
thiserror = "2"
8384
tokio = "1.26"

crates/polars-io/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ serde = { workspace = true, features = ["rc"], optional = true }
4646
serde_json = { version = "1", optional = true }
4747
simd-json = { workspace = true, optional = true }
4848
simdutf8 = { workspace = true, optional = true }
49+
strum = { workspace = true, optional = true }
4950
strum_macros = { workspace = true, optional = true }
5051
tokio = { workspace = true, features = ["fs", "net", "rt-multi-thread", "time", "sync"], optional = true }
5152
tokio-util = { workspace = true, features = ["io", "io-util"], optional = true }
@@ -60,7 +61,7 @@ home = "0.5.4"
6061
tempfile = "3"
6162

6263
[features]
63-
catalog = ["cloud", "serde", "reqwest", "futures", "strum_macros"]
64+
catalog = ["cloud", "serde", "reqwest", "futures", "strum", "strum_macros", "chrono"]
6465
default = ["decompress"]
6566
# support for arrows json parsing
6667
json = [

0 commit comments

Comments
 (0)