Skip to content

Commit 3f8ae59

Browse files
committed
Pin to experimental parquet decoder
1 parent cdc55e5 commit 3f8ae59

File tree

2 files changed

+46
-29
lines changed

2 files changed

+46
-29
lines changed

Cargo.lock

+32-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+14-13
Original file line numberDiff line numberDiff line change
@@ -208,18 +208,19 @@ unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin)"] }
208208
unused_qualifications = "deny"
209209

210210

211-
## Temporary arrow-rs patch until 55
211+
## Temporary arrow-rs patch
212+
## https://github.com/apache/arrow-rs/pull/6921cli
212213

213214
[patch.crates-io]
214-
arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
215-
arrow-array = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
216-
arrow-buffer = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
217-
arrow-cast = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
218-
arrow-data = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
219-
arrow-ipc = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
220-
arrow-schema = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
221-
arrow-select = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
222-
arrow-string = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
223-
arrow-ord = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
224-
arrow-flight = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
225-
parquet = { git = "https://github.com/apache/arrow-rs.git", rev = "b30336da8c1318f3f45e22f0a377ca21830fddac" }
215+
arrow = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
216+
arrow-array = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
217+
arrow-buffer = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
218+
arrow-cast = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
219+
arrow-data = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
220+
arrow-ipc = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
221+
arrow-schema = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
222+
arrow-select = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
223+
arrow-string = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
224+
arrow-ord = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
225+
arrow-flight = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }
226+
parquet = { git = "https://github.com/XiangpengHao/arrow-rs.git", rev = "7c10b4a93d99328928434462a044098993442a0f" }

0 commit comments

Comments
 (0)