Skip to content

Commit d0a3197

Browse files
dantengskyzhaoboran
authored andcommitted
taplo fmt
1 parent d9c8fb6 commit d0a3197

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"
@@ -430,6 +431,14 @@ ordq = "0.2.0"
430431
p256 = "0.13"
431432
parking_lot = "0.12.1"
432433
parquet = { version = "55", features = ["async"] }
434+
parquet-format-safe = "0.2.0"
435+
parquet2 = { version = "0.17.0", default-features = false, features = [
436+
"serde_types",
437+
"async",
438+
"zstd",
439+
"snappy",
440+
"lz4",
441+
] }
433442
passwords = { version = "3.1.16", features = ["common-password"] }
434443
paste = "1.0.15"
435444
percent-encoding = "2.3.1"
@@ -505,6 +514,7 @@ sqlx = { version = "0.8", features = ["mysql", "runtime-tokio"] }
505514
state = "0.6.0"
506515
state-machine-api = { version = "0.1.1" }
507516
stream-more = "0.1.3"
517+
streaming-decompression = "0.1.2"
508518
strength_reduce = "0.2.4"
509519
stringslice = "0.2.0"
510520
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)