Skip to content

Commit 1e80b7e

Browse files
committed
taplo fmt
1 parent 9f6d31e commit 1e80b7e

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ logforth = { git = "https://github.com/datafuse-extras/logforth", branch = "glob
382382
'fastrace',
383383
] }
384384
lz4 = "1.24.0"
385+
lz4_flex = { version = "^0.9" }
385386
map-api = { version = "0.2.5" }
386387
maplit = "1.0.2"
387388
match-template = "0.0.1"
@@ -431,6 +432,14 @@ ordq = "0.2.0"
431432
p256 = "0.13"
432433
parking_lot = "0.12.1"
433434
parquet = { version = "55", features = ["async"] }
435+
parquet-format-safe = "0.2.0"
436+
parquet2 = { version = "0.17.0", default-features = false, features = [
437+
"serde_types",
438+
"async",
439+
"zstd",
440+
"snappy",
441+
"lz4",
442+
] }
434443
passwords = { version = "3.1.16", features = ["common-password"] }
435444
paste = "1.0.15"
436445
percent-encoding = "2.3.1"
@@ -506,6 +515,7 @@ sqlx = { version = "0.8", features = ["mysql", "runtime-tokio"] }
506515
state = "0.6.0"
507516
state-machine-api = { version = "0.1.1" }
508517
stream-more = "0.1.3"
518+
streaming-decompression = "0.1.2"
509519
strength_reduce = "0.2.4"
510520
stringslice = "0.2.0"
511521
strum = "0.24.1"

src/common/experimental_parquet_reader/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ databend-common-expression = { workspace = true }
1515
databend-storages-common-table-meta = { workspace = true }
1616

1717
bytes = { workspace = true }
18-
lz4_flex = { version = "^0.9" }
19-
parquet2 = { version = "0.17.0", default-features = false, features = ["serde_types", "async", "zstd", "snappy", "lz4"] }
20-
parquet-format-safe = "0.2.0"
18+
lz4_flex = { workspace = true }
2119
parquet = { workspace = true, features = ["experimental"] }
22-
streaming-decompression = "0.1.2"
20+
parquet-format-safe = { workspace = true }
21+
parquet2 = { workspace = true }
22+
streaming-decompression = { workspace = true }
2323
zstd = { workspace = true }
2424

2525
[dev-dependencies]

src/query/storages/fuse/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,13 @@ parking_lot = { workspace = true }
6565
parquet = { workspace = true }
6666

6767
# TODO move this out
68-
parquet2 = { version = "0.17.0", default-features = false, features = ["serde_types", "async", "zstd", "snappy", "lz4"] }
68+
parquet2 = { version = "0.17.0", default-features = false, features = [
69+
"serde_types",
70+
"async",
71+
"zstd",
72+
"snappy",
73+
"lz4",
74+
] }
6975
paste = { workspace = true }
7076
rand = { workspace = true }
7177
serde = { workspace = true }

0 commit comments

Comments
 (0)